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


Click here to return to the 'Just Applescript should work too' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Just Applescript should work too
Authored by: brandonium on Oct 12, '04 12:11:09PM
I'm not sure why the 'on open' droplet doesn't work for the poster. This Applescript seems to work to do the same thing:

on open FILE_LIST
	tell application "Mail"
		open every item in FILE_LIST
		activate
	end tell
end open


[ Reply to This | # ]