Odds are that something got messed up when you copied and pasted the text 
into Script Editor. The old Google Groups liked to insert hard line breaks 
into messages, which would usually break the scripts people posted. If one 
of those snuck in somewhere, that could explain your issue.

Otherwise, you probably just don't have Growl running.


On Wednesday, June 26, 2013 2:01:17 PM UTC-4, Brett Swift wrote:
>
> I just found this and would love to get it working, however I can't seem 
> to..   I'm able to execute the script but it doesn't show a notification. 
>
> I'm not familiar with how applications integrate with growl - I was 
> expecting a quicksilver application to be registered in the growl 
> application list - which isn't happening. 
>
> In 5 years I assume something was upgrade.. does anyone know what needs to 
> happen? 
>
> Thanks! 
>
>
>
> On Wednesday, 4 June 2008 14:36:18 UTC-6, Hagure wrote:
>>
>> Description: Takes inputted text from the first pane and uses it to 
>> display a growl notice (the first one is a regular growl, the second 
>> one is a sticky one). The regular one can be used as a supplement to 
>> "Large Type", and the sticky one is useful for a quick, temporary (and 
>> easily dismissible) notepad (helpful when displaying a phone number or 
>> address). 
>>
>> Note: I don't take credit for writing these, they were on the old 
>> forums in the "good ol' days". 
>>
>> Where to save: Actions folder  i.e. ~/Library/Application%20Support/ 
>> Quicksilver/Actions/ 
>>
>> Script (Display Growl): 
>>
>> using terms from application "Quicksilver" 
>>         on process text theText 
>>                 growl(theText) 
>>         end process text 
>> end using terms from 
>>
>> on growl(theText) 
>>         tell application "GrowlHelperApp" 
>>                 set the allNotificationsList to {"Quicksilver Growl"} 
>>                 set the enabledNotificationsList to allNotificationsList 
>>
>>                 register as application ¬ 
>>                         "Quicksilver Growl" all notifications 
>> allNotificationsList ¬ 
>>                         default notifications enabledNotificationsList ¬ 
>>                         icon of application "iTunes" 
>>
>>                 --       Send a Notification... 
>>                 notify with name ¬ 
>>                         "Quicksilver Growl" title ¬ 
>>                         "a quick note:" description ¬ 
>>                         theText application name ¬ 
>>                         "Quicksilver Growl" icon of application ¬ 
>>                         "Quicksilver" 
>>         end tell 
>> end growl 
>>
>> ********************** End of Display Growl Script (copy up to "end 
>> growl") **************** 
>>
>> Script (Display Growl Sticky): 
>>
>>
>> using terms from application "Quicksilver" 
>>         on process text theText 
>>                 growlStick(theText) 
>>         end process text 
>> end using terms from 
>>
>> on growlStick(theText) 
>>         tell application "GrowlHelperApp" 
>>                 set the allNotificationsList to {"Quicksilver Growl"} 
>>                 set the enabledNotificationsList to allNotificationsList 
>>
>>                 register as application ¬ 
>>                         "Quicksilver Growl" all notifications 
>> allNotificationsList ¬ 
>>                         default notifications enabledNotificationsList ¬ 
>>                         icon of application "Quicksilver" 
>>
>>                 --       Send a Notification... 
>>                 notify with name ¬ 
>>                         "Quicksilver Growl" title ¬ 
>>                         "a quick note:" description ¬ 
>>                         theText application name ¬ 
>>                         "Quicksilver Growl" with sticky 
>>         end tell 
>> end growlStick 
>>
>> ********************** End of Display Growl Script Sticky (copy up to 
>> "end growlStick") ****************
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Quicksilver" 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/blacktree-quicksilver.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to