Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'A folder action script to size, rotate, and mail images' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
A folder action script to size, rotate, and mail images
Authored by: tngland on Oct 18, '04 04:26:14PM

Could anybody more adept at scripting (that is, almost anybody) tell me what would need to be changed in this script to have it work with Entourage?
Thanks.

---
Thomas S. England
Decatur GA 30030
Portfolio:
http://englandphoto.com/portfolio//



[ Reply to This | # ]
A folder action script to size, rotate, and mail images
Authored by: oink on Oct 19, '04 08:59:08AM

I have entourage strip and save all attachments to a specific folder, I am sure you can use the script on that folder... I have a similar script that purges old files from the attachment folder.

---
blurred visionary



[ Reply to This | # ]
A folder action script to size, rotate, and mail images
Authored by: orpy on Oct 19, '04 01:29:27PM

Entourage is smart enough to know that if you try to open an image or PDF that you'll probably want it attached to an email.

So, something as simple as this:

set myFile to choose file
tell application "Microsoft Entourage"
activate
open myFile
end tell

Should make Entourage create a new message window with the file that you've chosen attached to the message.

You should be able to just replace the word "Mail" with "Entourage" - although I'd "activate" it first before getting it to open the file ;-)


---
--
Martin



[ Reply to This | # ]