|
|
#1 |
|
Scripting Outlook
Hello all,
I'm trying to script what I thought would be a pretty simple event in Outlook, to accept meeting requests, but the syntax doesn't appear to be doing anything. Anyone have a brilliant solution? Code:
tell application "Microsoft Outlook"
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
accept meeting sending response none
end tell
|
|
|
|
0
|
|
|
#2 |
|
Think I solved my own question... The following seems to work, though only from the event email (and not from a calendar event itself):
Code:
tell application "Microsoft Outlook"
set selectedMessages to selected objects
if selectedMessages is {} then
--display dialog "Please select a message first and then run this script." with icon 1
return
end if
if (count of selectedMessages) is greater than 1 then
display dialog "Please select one meeting event for acceptance."
else
repeat with theMessage in selectedMessages
try
accept invite of theMessage sending response none
end try
try
accept meeting of theMessage sending response none
end try
end repeat
end if
end tell
Last edited by sitryd; Mar 14, 2013 at 11:28 AM. Reason: Changed code to only handle selected objects instead of all objects in a folder... oops. |
|
|
|
0
|
|
|
#3 |
|
(Edit 2: now works with events selected in the calendar view as well as meeting invite messages)
|
|
|
|
0
|
![]() |
|
«
Previous Thread
|
Next Thread
»
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
All times are GMT -5. The time now is 11:10 AM.






Linear Mode
