Hi.
I am using Spamsieve and this app automatically runs anytime apple mail is opened and then quits when apple mail is closed.
I wonder if you can develop the same behavior with infoclick as well?
Thank you
Running and quitting
- martin
- Official Nisus Person
- Posts: 5230
- Joined: 2002-07-11 17:14:10
- Location: San Diego, CA
- Contact:
Re: Running and quitting
Thanks for bringing this idea to our attention. It might be a good way of making InfoClick available when using Apple Mail. I'll file it as a potential enhancement.
In the meantime, here are two tips that might help you more easily use InfoClick:
1. You can set InfoClick to launch automatically whenever you login to your Mac, using either InfoClick's preferences or your system preferences (under Users & Group's login items).
2. You can use the menu Mail > Services > Find Email Using InfoClick to activate InfoClick. You can also assign this menu a keyboard shortcut in the system preferences.
In the meantime, here are two tips that might help you more easily use InfoClick:
1. You can set InfoClick to launch automatically whenever you login to your Mac, using either InfoClick's preferences or your system preferences (under Users & Group's login items).
2. You can use the menu Mail > Services > Find Email Using InfoClick to activate InfoClick. You can also assign this menu a keyboard shortcut in the system preferences.
Re: Running and quitting
Thank you for taking my suggestion under consideration.
Also, adding a custom icon to the mail toolbar would be nice!
Regards,
Michele
Also, adding a custom icon to the mail toolbar would be nice!
Regards,
Michele
Re: Running and quitting
You can use AppleScript scripts to have InfoClick and Mail run or quit together:
Instead of launching Mail, run this script:
Instead of quitting Mail, run this script:
Instead of launching Mail, run this script:
Code: Select all
tell application "InfoClick"
activate
end tell
tell application "Mail"
activate
end tell
tell application "InfoClick"
quit
end tell
tell application "Mail"
quit
end tell
Re: Running and quitting
Thanks Hamid for your suggestion. My question was slightly different. If I use an applescript like you say, then I always have to run it instead of launching/quitting mail normally.
Cheers,
Michele
Cheers,
Michele
- martin
- Official Nisus Person
- Posts: 5230
- Joined: 2002-07-11 17:14:10
- Location: San Diego, CA
- Contact:
Re: Running and quitting
Thanks for the script Hamid, that's a pretty nice idea. At least for launching both Mail and InfoClick together– I'm not sure I'd bother with using a script to quit them both.
In case anyone wants an easy-to-install solution for this, here's a custom app that wraps Hamid's script. Whenever you run that app, it simultaneously launches both Apple Mail and InfoClick.
In case anyone wants an easy-to-install solution for this, here's a custom app that wraps Hamid's script. Whenever you run that app, it simultaneously launches both Apple Mail and InfoClick.