A number of factors lead me to suspect a problem with individual users 
boxes.  Applescript is working locally for me, and the number of reports 
isn't enough to indicate everyone's is broken.  The error number indicates 
it doesn't think it can send that message to Growl, but for all the 
Applescript additions in 2.1, no significant changes to existing 
applescript functionality were made (the one change I know of is to use a 
larger version of the icon we are sent).  Things you can try, permissions 
repair, rebuilding the launchd database (A gui tool like Cocktail can help 
with that), and/or running the combo updater for 10.7.5.

On Monday, August 5, 2013 1:38:06 AM UTC-5, dewshi wrote:
>
> Try this:
> (save as Application from Applescript Editor)
>
>
> --"test growl"
>
>
> *property* app_name : "test growl"
>
> *property* notificationsList : {"test"}
>
>
> *on* register_growl()
>
> *try*
>
> *tell* *application* "Growl"
>
> *register* as application app_name all notifications notificationsList 
> default 
> notifications notificationsList icon of application app_name
>
> *end* *tell*
>
> *end* *try*
>
> *end* register_growl
>
>
> *on* growlnote(growltype, str)
>
> *try*
>
> *tell* *application* "Growl"
>
> *notify* with name growltype title growltype description str application 
> name app_name
>
> *end* *tell*
>
> *end* *try*
>
> *end* growlnote
>
>
>
> --SCRIPT:
>
>
> --verify Growl
>
> *tell* *application* "System Events"
>
> *set* GrowlisRunning *to* (*count* *of* (*every* *process* *whose* bundle 
> identifier *is* "com.Growl.GrowlHelperApp")) > 0
>
> *end* *tell*
>
> *if* GrowlisRunning *then*
>
> *my* register_growl()
>
> *end* *if*
>
>
>
> --send test notification
>
> *display dialog* "Test Growl notification?" with icon 1
>
> *if* GrowlisRunning *then*
>
> --growl message:
>
> *my* growlnote("test", "hello")
>
> *else*
>
> *display dialog* "Growl is not running!" buttons {"Cancel"} default button1 
> with 
> icon 0
>
> *end* *if*
>
>
> --END
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Growl Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/growldiscuss.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to