Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Timer Trap Problem
#2
Simply return from your timer:

Code: (Select All)

Rem sample of timer return
t1 = _FreeTimer
On Timer(t1, 1) GoSub Trap
Timer(t1) On
Start:
Do
x$ = InKey$
If x$ = Chr$(27) Then End
Loop
End
Trap:
Count = Count + 1
Print "Trap count:"; Count
Return
Reply


Messages In This Thread
Timer Trap Problem - by eoredson - 10-09-2024, 01:30 AM
RE: Timer Trap Problem - by SMcNeill - 10-09-2024, 01:51 AM
RE: Timer Trap Problem - by eoredson - 10-09-2024, 02:28 AM
RE: Timer Trap Problem - by SMcNeill - 10-09-2024, 02:55 AM
RE: Timer Trap Problem - by eoredson - 10-09-2024, 03:02 AM
RE: Timer Trap Problem - by eoredson - 10-09-2024, 03:37 AM
RE: Timer Trap Problem - by ahenry3068 - 10-09-2024, 11:18 AM
RE: Timer Trap Problem - by Cobalt - 10-09-2024, 03:42 PM
RE: Timer Trap Problem - by bplus - 10-09-2024, 06:40 PM
RE: Timer Trap Problem - by eoredson - 10-10-2024, 12:24 AM



Users browsing this thread: 2 Guest(s)