The "always stay on screen" setting sticks when I open and close Growl
preferences. It also sticks if I stop and start Growl. However, when I
initially opened it to check the settings it had reverted back to
"application decides". Perhaps it is resetting itself after a reboot. But
even if that was the case you would think that it would work until I
restarted my computer.
Is there a command in applescript that I can use to make it stay on screen?
Here is the current script:
*******************************************************
property scriptAppName : "Dialectic"
on handle_incoming_call_action(contact_name, contact_number,
phone_or_modem_name)
try
set n to "Name: " & contact_name & return
if contact_name = "" then set n to ""
set d to return & "Notes: " & phone_or_modem_name
if phone_or_modem_name = "" then set d to ""
set s to n & "Number: " & contact_number & d
tell application "GrowlHelperApp"
set myAllNotesList to {"incomingCall"}
register as application scriptAppName all notifications
myAllNotesList default notifications {"incomingCall"} icon of application
"Address Book"
notify with name "incomingCall" title "Incoming Callomatic"
description s & " calling" application name scriptAppName
end tell
end try
end handle_incoming_call_action
*******************************************************
on 7/17/11 2:45 AM, Peter Hosey <[email protected]> wrote:
> Do the settings stay as you have them, or do they change back if you close the
> Growl preference pane and reopen it?
--
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.