Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'An AppleScript to generate a timed shutdown' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
An AppleScript to generate a timed shutdown
Authored by: cougar718 on Mar 08, '04 05:29:26PM
Hey all, Seems that the >= character was not carried over correctly. Should be...

on idle
	try
		if ((current date) >= pDateGoal) then
			tell application "Finder" to shut down
		end if
	end try
end idle

---
Rick alias cougar

[ Reply to This | # ]