Page 1 of 1

Will This Applescript Work?

PostPosted: Fri Nov 01, 2019 7:23 pm
by ckeyes888
Hey,

Curious if this script will need to be converted?

Code: Select all
set myDescription to value of variable "GrowlAlert"

tell application id "com.Growl.GrowlHelperApp"
   
   notify with name ¬
      "Test Notification" title ¬
      "Message fron Indigo" description ¬
      myDescription application name "Indigo"
   
end tell


Thanks,

Carl

Re: Will This Applescript Work?

PostPosted: Sat Nov 02, 2019 3:20 am
by berkinet
ckeyes888 wrote:
...Curious if this script will need to be converted...

It should work since it doesn’t target Indigo. However, why not just use the Growl plugin?

Re: Will This Applescript Work?

PostPosted: Sat Nov 02, 2019 7:53 am
by ckeyes888
Thanks.

Carl