Lets say we have this code:
If $CmdLine[0] = 0 Then
MsgBox(64, "Result", "No parameter was entered!")
Exit
EndIf
MsgBox(64, "Entry", $CmdLine[1])
if i compile the script i can sucessfully get the parameter parsed thru cmd but if i send the parameter again its opening another instance of my app... how can i make it to limit it to 1 instance but still parse parameters? I tried with "_Singleton" but if you limit the app to only one instance is not getting the parameters no more...