With the launch of Growl 1.3, it no longer lists as GrowlHelperApp in the System Events.
http://growl.info/documentation/applescript-support This: Checking if Growl is running If you want to distribute your scripts, you should check if Growl is running before sending any events to GrowlHelperApp in order to avoid the "Choose Application" dialog. tell application "System Events" set isRunning to ¬ count of (every process whose name is "GrowlHelperApp") > 0 end tell needs to change to: count of (every process whose name is "Growl") > 0 -- You received this message because you are subscribed to the Google Groups "Growl Discuss" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/growldiscuss?hl=en.
