Entourage Event AppleScript

| | Comments (0) | TrackBacks (0)

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

0 TrackBacks

Listed below are links to blogs that reference this entry: Entourage Event AppleScript.

TrackBack URL for this entry: http://www.manamplified.org/cgi-bin/mt-tb.cgi/202

Leave a comment