Code: Select all
tell application "Decibel"
set currentTrack to title of nowPlaying
growlNotify("Currently Playing", currentTrack)
end tell
using terms from application "GrowlHelperApp"
-- Register Growl
tell application "GrowlHelperApp"
register as application "Decibel" all notifications {"Alert"} default notifications {"Alert"} icon of application "Decibel.app"
end tell
on growlNotify(growlTitle, growlDescription)
tell application "GrowlHelperApp"
notify with name "Alert" title growlTitle description growlDescription application name "Decibel"
end tell
end growlNotify
end using terms from