Hi there! i would like to know how to make a select starting func() from a GUI
HotKeySet("{TAB}", "exmpl") Func exmpl() Global $p = 1 While 1 Select Case $p = 1 a1() Case $p = 2 a2() case $p=3 a3() endselect wend endfunc
This is the example, when i press tab "exmpl" start at $p=1
but i want to know how instead that, i could give a option if someone wants to start from $p=2 or $p=3
Regards!