Cyberium

Cyberium

Joined Member # 2471760
0 Posts 1 Replies 586 Reputation

This has been something I've been trying to figure out for a while now - either trying to use WMI or Registry Settings (although, this still needs checking thoroughly) as I move between 2 places where in one place my wireless is required to use DHCP (aquire an IP from the router) and another place where I use a static IP - would be nice to have a script that at the click of a button would either switch between the two or allow you to configure it straight frmo the desktop - if anyone has any ide

1 Replies 2,030 Views

Orrrrr go to C:\Documents and Settings\"Your User Name"\Local Settings\Application Settings\Stardock\DesktopX\"Theme Name" This folder contains all the individual graphics (and Script codes) for that particular theme.

6 Replies 11,649 Views

Well the specific numbers given for the left values (i.e. Object.Left = 2 & If Object.Left + Object.Width <= 236) are relevant to the width of the parent image - the image is 238 pixels in width - 2 for a border. You might need to adjust these values depending on the parent image you use.

14 Replies 11,587 Views

Yeah that error is page-specific and, as far as I know, there is no way to code the error out via DesktopX - You would have to use Internet Explorer's Settings, either in Custom Level security or in the Advanced settings - try looking for "Scripts" or "ActiveX" sections and it may be there I am unable to check at min as using locked-down systems at work - will get back to you on where exactly to find these settings. Have a play around in IE's settings see what you can find.

6 Replies 2,162 Views

You can tweak the registry as well to disable the Windows Keys & Right-Click (even though that has no effect when running DesktopX). The Windows key is an important one though as pressing the Windows Key + Pause/Break will bring up the System Properties, saying that, pressing Ctrl + Esc brings up the Start Menu as well... So it would be pretty difficult to completely lock a system down to just the desktop. You may want to delve into more Windows specific articles about locking down a system

2 Replies 1,576 Views

I see what you mean now... Usually the Radio Streams just display the title of the stream not what is actually playing (although through ShoutCast & Winamp it is possible to display track and artist info) But in the case of DX using winamp to display track artist info. DX generally splits the playlist item (i.e. "Rammstein - Mutter" at the " - " then says the first part is the Artist (returning "Rammstein") and the second part would be the title (returning "Mutter"). Now having said tha

12 Replies 3,263 Views

Eee I made a few browsers for my desktops.. I think they all included a "Favourites" list - effectively a Drop down box for saved websites. The best version is in my "Fresh" theme available here Not Too Sure Theme

4 Replies 1,492 Views

They can if you use Winamp! Just use the Clip Name (found in Additional Abilities!) and you should have the stream details there

12 Replies 3,263 Views

Yeah, I found out recently (being yesterday) that there's a link between Timers and CPU usage.. Currently working on a program that reads and writes files alot (written in VBScript, designed in DX) and Timers running once every millisecond (i.e. Object.SetTimer 1, 1) swamps the CPU, slowing the timer to at least 1000 (a second) seems to be alright - As to the other part an icon not reappearing again... no clue O.o If you don't ask you'll never know! <img src="http://images.stardock.com/

4 Replies 5,421 Views

Ok carl, this was a fun experience for me. I wrote a small web browser using activeX controls inc ComboBox control... I had to make it so values were set for the particular items listed. For this I used the Object.PersistStorage method in script, I suppose the answer would be an If, ElseIf statement depending on the ListIndex of the ComboBox - i.e. in the ComboBox the first item is selected (ListIndex(0)) then TableDisplay (whatever object this is) = Object.PersistStorage("FieldName") ? If thats

2 Replies 1,679 Views

O Ok yeah Bryce is cheaper.. but a really powerful and FREE 3D Creation software is Blender! See Blender.Org . Though a but odd to look at at first its really easy and simple to use but at the same time really powerful.. Just thought I'd plug it I'd started out with Bryce 4 first thought as I got it free with a Magazine and I did manage to make a few images with that -

17 Replies 11,395 Views

Ha! Murex no need to say thanks really its what this place was made for but it is nice to know we can help people other than ourselves. I think the most complicated script I made was a drop-down list of saved websites.. That was nuts to get right ku. Anyway, Thanks for your thanks but no doubt there'll be a time when you provide to me or SirSmiley or even RomanDA (the Script God.. or so it seems)

4 Replies 5,221 Views

Ok fixed it f0r sure this time..Honest;y I should test these things first lol Sub Object_OnTimer1 'Stops the timer once the object has reached full opacity DesktopX.Object("icon Ie").Visible = True If DesktopX.Object("icon Ie").Opacity => 100 Then Object.KillTimer 1 Else 'Fades in the object DesktopX.Object("icon Ie").Opacity = DesktopX.Object("icon Ie").Opacity +1 End If End Sub

9 Replies 6,646 Views

hehe I just tried putting "" in the Windows Run box and it bought up the Currently Logged on users folder C:\Documents and Settings\User of Doom

11 Replies 9,363 Views

Ha Figured it out.. sorry about that I missed a bit to make the object Visible again... Try this for Timer1 Sub Object_OnTimer1 'Stops the timer once the object has reached full opacity If DesktopX.Object("icon Ie").Opacity => 1 Then DesktopX.Object("icon Ie").Visible = True ElseIf DesktopX.Object("icon Ie").Opacity => 100 Then Object.KillTimer 1 Else 'Fades in the object DesktopX.Object("icon Ie").Opacity = DesktopX.Object("icon Ie").Opacity +1

9 Replies 6,646 Views