> How can I implement an script to run every hour.

Use a timeOut object. Example:

on myScript -- run once an hour
  -- do something
end

-- the timeOut object
    gTimeOutObj = timeOut("script timer").new(60000, #myScript, VOID)

Don't forget to destroy the timeOut object when you're done, or it will
keep firing once an hour.

Cordially,

Kerry Thompson

[To remove yourself from this list, or to change to digest mode, go to 
http://www.penworks.com/lingo-l.cgi  To post messages to the list, email [EMAIL 
PROTECTED]  (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping 
with programming Lingo.  Thanks!]

Reply via email to