Really really great script! Thanks, this is exactly what I need. Keeping a separate task list in Entourage was annoying. Now I can finally integrate in my complete GTD system.
Great script that works – thanks.
One small request – please delete your old versions or redirect to the new pages – I spent a while debugging the old script only to find that you had created a new version for Snow Leopard.
just found this script
would be really useful
I’ve downloaded and put in Entourage Script Menu Items
But it just doesn’t work when hitting CTRL + O with mail selected in Entourage
What am I doing wrong ?
@Tim, thats odd, works for me every time. You have to place it into ~/Documents/Microsoft User Data/Entourage Script Menu Items
my filename is “[OF] SendEntourageToOmniFocus\cO.scpt”. Are you using Entourage 2008? You might also open the console application and see if you see any suspicious messages there.
Dude!!! Thanks so much. Exactly what I needed. I had to switch to Entourage from Mail, and I lost the ability to sync with OmniFocus. You have resurrected my workflow.
You really got be started here. I also add a few lines that send the task to Toodledo, which I use with my Android phone. On Android, I use Got To Do, a great little app for Toodledo. Anyway, here’s the code:
” . . .
repeat with theMessage in selectedMessages
set theName to subject of theMessage
set theContent to content of theMessage
set theID to ID of theMessage as string
set msgToodledo to make new outgoing message with properties {subject:theName, content:theContent, recipient:”toodledo_email_name@toodledo.com”}
send msgToodledo
. . .”
Everything else stays the same.
There may be an easier way to resend a message using AppleScript and Entourage, but I don’t know the vocabulary. Also, using the method, the email comes from me, which prevents my work system from blocking it as possible relayed spam.
September 15th, 2009 on 19:41
Thanks for the script.
Scott
September 28th, 2009 on 17:25
Thank You!!!
You have successfully saved my workflow! Now if I can only get my company off this ancient version of Exchange then I could just use mail!
\m/ ~Chad
October 6th, 2009 on 21:29
Thanks a bunch – this was the first time I’ve installed a script and your instructions and script are great. Cheers, matt
October 15th, 2009 on 6:59
Really really great script! Thanks, this is exactly what I need. Keeping a separate task list in Entourage was annoying. Now I can finally integrate in my complete GTD system.
- Sander
December 7th, 2009 on 15:37
Works like a charm. This is the key to my gtd workflow. Thanks!!!
January 6th, 2010 on 22:10
Great script that works – thanks.
One small request – please delete your old versions or redirect to the new pages – I spent a while debugging the old script only to find that you had created a new version for Snow Leopard.
Thanks again, ak
January 7th, 2010 on 8:52
will do
February 1st, 2010 on 20:21
Thanks for putting the time in. The latest script works great.
May 9th, 2010 on 3:53
great work – superb – thx a bunch
May 10th, 2010 on 12:48
just found this script
would be really useful
I’ve downloaded and put in Entourage Script Menu Items
But it just doesn’t work when hitting CTRL + O with mail selected in Entourage
What am I doing wrong ?
May 12th, 2010 on 10:39
@Tim, thats odd, works for me every time. You have to place it into ~/Documents/Microsoft User Data/Entourage Script Menu Items
my filename is “[OF] SendEntourageToOmniFocus\cO.scpt”. Are you using Entourage 2008? You might also open the console application and see if you see any suspicious messages there.
May 20th, 2010 on 11:25
Thanks Rainer! Much appreciated! – Mark
June 11th, 2010 on 15:52
Dude!!! Thanks so much. Exactly what I needed. I had to switch to Entourage from Mail, and I lost the ability to sync with OmniFocus. You have resurrected my workflow.
Thanks again.
Craig
June 11th, 2010 on 16:41
you are welcome
June 11th, 2010 on 16:44
Rainer,
I did notice one bug on my machine. It doesn’t delete the entourage*.eml files in /tmp. When I run it from the applescript editor, I get:
error “Finder got an error: Can’t get file \”/tmp/entourage29463.eml\”.” number -1728 from file “/tmp/entourage29463.eml”
It is able to write the files, so I am pretty sure the permissions are set correctly. /tmp is a link to /private/tmp which has all the “w” bits set.
Any ideas?
Craig
June 12th, 2010 on 5:11
Rainer,
I figured it out. On my system, running 10.6.3, I needed to modify to code to:
– Remove the file now that it is in OF
tell application “Finder”
delete file (theFileName as POSIX file)
end tell
The trick was adding “(theFileName as a POSIX file)”.
Thanks again for the script. Hope this helps.
Craig
June 14th, 2010 on 0:35
Rainer,
You really got be started here. I also add a few lines that send the task to Toodledo, which I use with my Android phone. On Android, I use Got To Do, a great little app for Toodledo. Anyway, here’s the code:
” . . .
repeat with theMessage in selectedMessages
set theName to subject of theMessage
set theContent to content of theMessage
set theID to ID of theMessage as string
set msgToodledo to make new outgoing message with properties {subject:theName, content:theContent, recipient:”toodledo_email_name@toodledo.com”}
send msgToodledo
. . .”
Everything else stays the same.
There may be an easier way to resend a message using AppleScript and Entourage, but I don’t know the vocabulary. Also, using the method, the email comes from me, which prevents my work system from blocking it as possible relayed spam.
Hope your readers will like this.
Craig
June 14th, 2010 on 8:14
Craig, thats great, thanks a lot!