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


Click here to return to the 'AppleScript better' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
AppleScript better
Authored by: viega on Sep 12, '02 02:33:46PM

By the way, here's the final AppleScript I was using as a folder action. The action disappeared on a fairly regular basis. All this script does is call out to the shell command.

But, if you can get it to work for you, that's great:

property this_command : "/Users/viega/bin/ical_convert"

on adding folder items to this_folder after receiving these_items
try
set this_result to do shell script this_command
on error error_message
display dialog error_message
end try
end adding folder items to



[ Reply to This | # ]