Hi

I would be very grateful if anyone can help.

I have some AppleScript (below) to send a Growl notification from
FileMaker Pro.




property appName : "Filemaker Growl Notification"

RegisterWithGrowl()
on RegisterWithGrowl()
    tell application "GrowlHelperApp"

        set the allNotificationsList to {"General Notifications",
"Special Notifications"}

        set the enabledNotificationsList to {"General Notifications",
"Special Notifications"}

        register as application ¬
            appName all notifications allNotificationsList ¬
            default notifications enabledNotificationsList ¬
            icon of application "Filemaker Pro Advanced"

    end tell
end RegisterWithGrowl


on Growl(NotificationType, TitleString, DescriptionString)
    tell application "GrowlHelperApp" to notify with name
NotificationType title TitleString description DescriptionString
application name appName

end Growl


Growl("General Notifications", "Title 1", "Sample Text 1")





What I want is to specify where on the screen the Growl window
appears.

If anyone can help, I would be very grateful.

Regards

Nick


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Growl Discuss" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/growldiscuss?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to