Solved*Wait/Timer and User Input at the same time
Posted: Fri Aug 12, 2011 5:57 pm
Using the wait function I'm trying to create some kind of counter for the user
to see how much time has passed, while he has to input some Information.
The seconds functions is useful for this I'm guessing but I can't seem to find a
way to use it right.
Thank you very much in advance!
to see how much time has passed, while he has to input some Information.
The seconds functions is useful for this I'm guessing but I can't seem to find a
way to use it right.
Code: Select all
On Opencard
put 20 into x
repeat until x = 0
subtract 1 from x
wait 1 sec
put x into fld "Counter"
end repeat
end Opencard