Jump to content

Timed script termination?


Recommended Posts

trying to terminate a script after 10 minutes, any ideas, i've looked everywhere... =(

would it look something like this?

HotKeySet("{ESC}", "Terminate")
$begin = TimerInit()
$dif = TimerDiff($begin)
While 1 ...
If ...
ElseIf ...
Endif
$dif = 600000
WEnd

I'm a little confused

Edited by brookemoskalev
Link to comment
Share on other sites

$runtime=600;in seconds
$tuntime&=1000;turn into milliseconds
$ExitTimer=TimerInit()
While TimerDiff($ExitTimer)<$RunTime
;;do your stuff
Wend
GuiDelete()
;;end of the script

Only two things are infinite, the universe and human stupidity, and i'm not sure about the former -Alber EinsteinPractice makes perfect! but nobody's perfect so why practice at all?http://forum.ambrozie.ro

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...