Jump to content

Simple test...


Recommended Posts

Here is what i have so far

MsgBox(0, "Hidden Icon Button", "This is disable the hidden icons button")
ControlDisable("", "start", 1502)
$return = MsgBox(4, " ", "Click to enable hidden icons button", 1000000)
If $return = 6
ControlEnable("", "start", 1502)
Exit
Else

This is leave the button disabled. Im looking to some how loop back to $return if $return = 7

I hope you know what a spoiler is...[u]"title WOOPS:Var_start "WOOPS" %0goto Var_"-A true n00b at work[/u]
Link to comment
Share on other sites

Try this:

MsgBox(0, "Hidden Icon Button", "This is disable the hidden icons button")
ControlDisable("", "start", 1502)
restart()
Func restart()
$return = MsgBox(4, " ", "Click to enable hidden icons button", 1000000)
If $return = 6 Then
ControlEnable("", "start", 1502)
Exit
ElseIf $return = 7 Then
    restart()
EndIf
EndFunc

CheersNobby

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...