Heyo, i am new with Apple/Script and Mac

I tried to make a notification for my script using growl

I just copied the sample script from the Growl Website and changed
messages and names

tell application "GrowlHelperApp"
        -- Make a list of all the notification types
        -- that this script will ever send:
        set the allNotificationsList to ¬
                {"Volume Mute"}

        -- Make a list of the notifications
        -- that will be enabled by default.
        -- Those not enabled by default can be enabled later
        -- in the 'Applications' tab of the growl prefpane.
        set the enabledNotificationsList to ¬
                {"Volume Mute"}

        -- Register our script with growl.
        -- You can optionally (as here) set a default icon
        -- for this script's notifications.
        register as application ¬
                "Volume Mute Script" all notifications allNotificationsList ¬
                default notifications enabledNotificationsList ¬
                icon of application "Script Editor"

        --      Send a Notification...
        notify with name ¬
                "Test Notification" title ¬
                "Test Notification" description ¬
                "This is a test AppleScript notification." application name 
"Volume
Mute Script"

end tell

the script gets registered in growl and is enabled, i dont get any
errors but there is no notification

when i just run the sample script i get one

hope someone can point at my failure :---))

-- 
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.

Reply via email to