This may sound like a stupid question once again... but hey, i'm learning
I think i worked out my problem with the checkboxes with the help of Saunders' example... However now what seems to happen is when i put a check in the checkbox i want, which is supposed to call a function, the thing just goes bananas on me, checking and un-checking itself like crazy ....
Func Follow1()
If $MyTarget1 <> "" Then
Send("/target ");
Send($MyTarget1);
Send("{RETURN}");
Else
MsgBox(4096, "ERROR", "There is no player name defined in box #1", 10)
EndIf
EndFunc
Now my question is, when someone checks a box, its supposed to only perform this function once right ??? Or will it keep repeating this function until the box is unchecked ???
Is there any way to check if the box is checked or not with an IF statement ???
Am I making any sense with my n00b non-sense ???