Showing posts with label ikey. Show all posts
Showing posts with label ikey. Show all posts

Wednesday, October 31, 2007

Instantly Move Selected Messages in Mail.app

Being an early adopter never comes without cost. Now, with Leopard and its Mail.app 3.0, plugins such as MailActOn unfortunately don't work.

For a quick workaround I fire up this AppleScript (using a hotkey assigned with iKey) to move the selected messages to my "Archive" folder. It can easily be tweaked to achieve similar functions:

tell application "Mail"
move the selection to mailbox "Archive"
end tell

Enjoy.