by byakuyabo » Mon Aug 17, 2009 1:36 am
Hello, newbie here. I am mostly done with a new AutoDJ script, but I have run into trouble adding an interface for adjusting settings in the Options menu. If I add a button, the button looks fine initially, but if you move the mouse pointer over it, it disappears. The button will then flicker on for a very brief moment when the mouse pointer either enters or leaves the button area, but will then vanish again. Curiously, this problem seems not to happen with the Gilded skin, but does occur with all of the other skins included in the software.
Here is a very simple version of the code that will demonstrate this issue when used in an AutoDJ script:
Code: Select all
Sub InitConfigSheet(Panel)
Dim advButton
Set advButton = SDB.UI.NewButton(Panel)
advButton.Caption = "Advanced"
End Sub
This issue seems pretty basic, but I cannot figure out any way to fix it. I suspect that the problem may be related to hover animations, but I have no idea what to do about it. I would like the options interface for my script to work with all default skins. Can anyone help me?
Thanks,
byakuyabo
Hello, newbie here. I am mostly done with a new AutoDJ script, but I have run into trouble adding an interface for adjusting settings in the Options menu. If I add a button, the button looks fine initially, but if you move the mouse pointer over it, it disappears. The button will then flicker on for a very brief moment when the mouse pointer either enters or leaves the button area, but will then vanish again. Curiously, this problem seems not to happen with the Gilded skin, but does occur with all of the other skins included in the software.
Here is a very simple version of the code that will demonstrate this issue when used in an AutoDJ script:
[code]Sub InitConfigSheet(Panel)
Dim advButton
Set advButton = SDB.UI.NewButton(Panel)
advButton.Caption = "Advanced"
End Sub[/code]
This issue seems pretty basic, but I cannot figure out any way to fix it. I suspect that the problem may be related to hover animations, but I have no idea what to do about it. I would like the options interface for my script to work with all default skins. Can anyone help me?
Thanks,
byakuyabo