The growl script was looking for a GrowlHelperApp and wouldn't compile without it. So the app selection window kept popping up and I just tried to see if I could point it at growl itself.
No dice. And even worse - now whenever I compile the AppleScript it automatically changes the text in the file from GrowlHelperApp to growl! Do you know where the setting/file is that stores that information? The script compiles for me and even appears in quicksilver but when I send text to it - there's no notification and no new app registered in growl.... Any tips to debug this? Brett Sent from my iPhone On 2013-06-28, at 1:43, Hagure <[email protected]> wrote: > Sorry for the double post, but I can confirm that The Growl Notification & > Growl Sticky scripts still work as intended. Must be a formatting error. > > I dunno if I posted my iTunes notification script here, but that definitely > broke since 10.6/newer iTunes. I've fixed it with some code I found; I'll > post it soon. > > On Friday, June 28, 2013 12:38:33 AM UTC-7, Hagure wrote: >> >> 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 a topic in the Google > Groups "Quicksilver" group. > To unsubscribe from this topic, visit > https://groups.google.com/d/topic/blacktree-quicksilver/8YLhO83tsPo/unsubscribe. > To unsubscribe from this group and all its topics, 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. > > -- 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.
