[VxE]
Joined: 07 Oct 2006 Posts: 3254 Location: Simi Valley, CA
|
Posted: Tue Mar 09, 2010 6:50 am Post subject: |
|
|
| Code: | #Persistent ; prevents the script from exiting when it reaches the first 'Return'
SetTimer, MySubroutine, 900000 ; 900,000 milliseconds is 15 minutes
MySubroutine: ; this is a label
Tooltip, This tooltip will display every 15 minutes
Sleep 10000 ; 10 seconds
Tooltip ; close the tooltip
Return ; ends the subroutine |
SetTimer _________________ Ternary (a ? b : c) guide TSV Table Manipulation Library
Post code inside [code][/code] tags! |
|