Re: moving multiple *selected* messages in Eudora
Re: moving multiple *selected* messages in Eudora
- Subject: Re: moving multiple *selected* messages in Eudora
- From: Jon Pugh <email@hidden>
- Date: Tue, 18 Mar 2003 10:52:06 -0800
At 10:53 AM -0700 3/18/03, Doug McNutt wrote:
>
Check the archives for John Delacour's reply, yawning, to me on Fri, 28 Feb 2003. Subject: Re: Script for Eudora.
>
I too would really like to have the truth explained in a more general way than with example code.
I ain't got no 'splaining to do, but I've been using John's technique successfully for a while now:
on run
set msgs to getselection()
repeat with m in msgs
tell application "Eudora"
set status of m to already read
move m to end of mailbox "Spam"
end tell
end repeat
end run
on getselection()
tell application "Eudora"
try
set {mb, moved} to {mailbox of message "", {}}
on error
return beep
end try
repeat
try
set end of moved to move message "" to end of mb
on error
exit repeat
end try
end repeat
end tell
moved
end getselection
It works well, if not very quickly.
Jon
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.