RE: Finder Pause before emptying the trash
RE: Finder Pause before emptying the trash
- Subject: RE: Finder Pause before emptying the trash
- From: email@hidden
- Date: Sun, 3 Mar 2002 18:21:48 EST
The best way I have found is to use two separate tell blocks -- one to tell
it to do whatever, then end tell, then start another tell Finder block with
empty trash. That way the first finished before the second started (OS 8.x,
9.x).
EG:
tell application "Finder
-- do whatever
end tell
tell application "Finder"
empty trash
end tell
_______________________________________________
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.