Quick and dirty addition to the MS Entourage "Create Event from Message" AppleScript.
Edit the file located under: ~/Documents/Microsoft User Data/Entourage Script Menu/Create Event from Message\cE
After the 'set newEvent to' line, add
-- create a new date with time at the next hour set newDate to ((current date) + 1 * hours) set newTime to time of newDate set newTime to (newTime div hours) * hours set time in newDate to newTime -- set time to next hour, for duration of an hour, with remind time set start time of newEvent to newDate set end time of newEvent to newDate + 1 * hours set remind time of newEvent to 5
Leave a comment