My simple code
Sleep(5000)
MsgBox(1,"aaa","aaa"
Sleep(3000)
MsgBox(1,"bbb","bbb")
Sleep(3000)
MsgBox(1,"ccc","ccc")
Sleep(3000)
Note that the above code has an error because missing parentheses. I need the autoit to ignore the error and exit. Help me.