home *** CD-ROM | disk | FTP | other *** search
- /*
- call hoovers timer program with interval set according to system time
- */
- options results
- curtime = time()
- weekday = date('Weekday')
- say weekday
- hour = substr(curtime,1,2)
- if hour >= 18 && hour <= 6
- interval = "12"
- else
- interval = "8"
- endif
-
- address command 'Timer -log -x 405 -y 235 -firstscreen -autostart -interval '||interval
-
- exit 0
-