Re: Memory and idle applescript
Re: Memory and idle applescript
- Subject: Re: Memory and idle applescript
- From: Jon Pugh <email@hidden>
- Date: Tue, 19 Aug 2003 15:10:15 -0700
At 2:36 PM +0200 8/19/03, julifos wrote:
>
I don't want sleep. My purpose is a stay-open app which will react only to
>
the "open" event, but there is not idle handler.
No, you have an implicit idle handler that returns too short of a wait time. If you write a trivial one which returns a large number, you will suck less time.
on idle
return 10000 -- seconds
end
That shouldn't suck any time until you drop something on it.
Jon
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.