Hello there,
I would like to have an Applescript (or another method) where, if I run it, it will stop the dock icon from flashing the names of people who have sent me messages. I have my messages come in through Growl so a lot of times (but not always) I just want to stop the dock icon from flashing. The simplest way to do this from my perspective is to activate the application then Command+Tab back, but I'm wondering if there's a cleaner way to do this through Applescript (such as just tell the application to stop flashing). Any thoughts? Thanks.
Adium Applescript Question
I'm not the best at applescript but a simple one would beceptorial wrote:Ya I definitely want it in general, I'd just like to be able to stop it at certain times when it's flashing with a command key, which I would set to run an Applescript through a quicksilver trigger.
Code: Select all
tell application Adium
activate
hide
end tell- zaudragon
- Growl Team
- Posts: 1852
- Joined: Sat Dec 04, 2004 5:05 am
- Location: Kensington, CA, USA
- Contact:
No, it should be:m2e wrote:I'm not the best at applescript but a simple one would beceptorial wrote:Ya I definitely want it in general, I'd just like to be able to stop it at certain times when it's flashing with a command key, which I would set to run an Applescript through a quicksilver trigger.Code: Select all
tell application Adium activate hide end tell
Code: Select all
tell application "Adium"
activate
hide
end tell