- Wed Nov 04, 2015 3:08 am
#33000
to set the timer to zero and disable it use the command
Hi
this corrects the exit - thanks.
However, I still get no display updates with wprint htmlvar(a) until I exit the program. Am I misunderstanding something?
This is what I see when the program is first run
going to do some stuff in a bit[Click me to exit]1.00
This is what I see after exiting after about 12 seconds
going to do some stuff in a bit[Click me to exit]3.003.003.00
but I get no updates between and value 2 is complete lost
revised test code is:
Code: Select alltimer 5000 [do.some.stuff]
print "going to do some stuff in a bit"
button "Click me to exit" [Exit.ThisThing]
a = 0
wait
[do.some.stuff]
wprint htmlvar(a)
a = a + 1
wait
[Exit.ThisThing]
timer 0
end