Script to download pictures?

J

Jon Connell

So this script:


tell application "Microsoft Entourage"
set selectedMessages to current messages
if selectedMessages is {} then
display dialog "Please select a message first and then run this
script." with icon 1
return
end if

repeat with theMessage in selectedMessages
download theMessage
end repeat
end tell



will download all the selected messages from my IMAP account. I figure
it might be useful to have a list of addresses that I automatically
download mail from via a rule (for newsletters and the like). But how do
I then also download pictures for just the selected message?

Jon
 
B

Barry Wainwright [MVP]

will download all the selected messages from my IMAP account. I figure
it might be useful to have a list of addresses that I automatically
download mail from via a rule (for newsletters and the like). But how do
I then also download pictures for just the selected message?

Jon

The download pictures setting is a security preference, and as such is not
scriptable. Sorry.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top