Also, these were written pre Lion & growl 2.0, so some things might be 
wonky. 

That said, I've just recently upgraded 10.6 → 10.8+growl 2.0, and have been 
fixing my applescripts as I notice errors. I'll (eventually) post my 
findings here, as well as a few new scripts I've made for various things.


On Wednesday, June 26, 2013 11:01:17 AM UTC-7, 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