Page 1 of 1

Running and quitting

Posted: 2016-02-13 22:34:00
by Mikii
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

Re: Running and quitting

Posted: 2016-02-15 15:18:11
by martin
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.

Re: Running and quitting

Posted: 2016-02-15 23:00:48
by Mikii
Thank you for taking my suggestion under consideration.

Also, adding a custom icon to the mail toolbar would be nice!

Regards,

Michele

Re: Running and quitting

Posted: 2016-02-16 01:25:48
by Hamid
You can use AppleScript scripts to have InfoClick and Mail run or quit together:

Instead of launching Mail, run this script:

Code: Select all

tell application "InfoClick"
	activate
end tell
tell application "Mail"
	activate
end tell
Instead of quitting Mail, run this script:
tell application "InfoClick"
quit
end tell
tell application "Mail"
quit
end tell

Re: Running and quitting

Posted: 2016-02-16 02:31:03
by Mikii
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

Re: Running and quitting

Posted: 2016-02-16 14:22:34
by martin
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.