Hey guys,
I downloaded DX 3.5 and realised it has no SysTray support. Has SD decided to make that in professional, did I download a bad version or do I need some kind of plugin? (I'm 13, I can't persuade parents to buy OD)
Also, I'm kind of new to scripting. I was wondering if anyone could help me with abit of scripting. I currently need a script which delays until it goes on to the next step. I am trying to make a Vista-Like Start Menu where on default a clock
is showing, but when you mouse over certain items the clock disappears
and an icon representing the item fades in. I need the delay because without it the theme lags.
I need a script like this:
Sub Object_OnStateChange (state)
If state = "Mouse Over" then
(A Delay Script Please)
DesktopX.Object("0").state = "1"
DesktopX.Object("clock_bk01").visible = False
I have inputted this script (clock_bk01 is the clock, [something] pic are the icons). It looks like this:
Sub Object_OnScriptEnter
Object.SetTimer 1,300
Object.SetTimer 2,300
End Sub
Sub Object_OnTimer1
DesktopX.Object("clock_bk01").visible = True
DesktopX.Object("User Pic").state = "0"
End Sub
Sub Object_OnTimer2
DesktopX.Object("clock_bk01").visible = False
DesktopX.Object("User Pic").state = "1"
End Sub
Sub Object_OnMouseLeave
Object.SetTimer 1,300
End Sub
Sub Object_OnMouseEnter
Object.SetTimer 2,300
End Sub
Sub Object_OnScriptExit
Object.KillTimer 1
Object.KillTimer 2
End Sub
The fade is manual (a 10 slide animation using the transparency change while it animates). State "0" is a transparent state, State "1" is an unlooped fade state. The script doesn't work-instead of hiding the clock it makes it flash every second, regardless of anything.