hi
I had a look at tdk mans tutorial on timers
http://forum.thegamecreators.com/?m=forum_view&t=59347&b=7
and I found this code
Rem Digital Clock Example
Set Text Opaque
T=Timer()
Do: Rem Main Program Loop
Seconds=(Timer()-T)/1000
If Seconds>=60
Inc Minutes
If Minutes>=60
Inc Hours
If Hours>=24
Hours=0
Endif
Minutes=0
Endif
Seconds=0
T=Timer()
Endif
Hrs$=Str$(Hours)
If Hours<10 Then Hrs$="0"+Hrs$
Min$=Str$(Minutes)
If Minutes<10 Then Min$="0"+Min$
Sec$=Str$(Seconds)
If Seconds<10 Then Sec$="0"+Sec$
Text 0,0,Hrs$+":"+Min$+":"+Sec$+" "
Loop
its all well and good but I wanted to know how to pause the timer that is displayed with this code.
Thanks in advanced for any help.
BM
Our aim is to keep the loo's clean, your aim can help.