Hi Guys,

Tell me - am I going crazy?

 Code:
Cls
Break on
At (3,3)"Test1"
Get $
Exit
$null = MessageBox("TEST","TEST",4160)


I would expect this code to generate "Test1" as output to the screen, and then to exit the script after I press a button. Instead, it also shows the messagebox... ??

If I change the code to:

 Code:
Cls
Break on
At (3,3)"Test1"
Get $
Exit
At (4,3)"Test2"
Get $
$null = MessageBox("TEST","TEST",4160)


Then it does exactly what I would expect: output only "Test1" to the screen and exit.
_________________________
Regards, Jeroen. There are two ways to write error-free programs. Only the third one works.