Jump to content

Generate Outlook Calendar meeting from FMP via applescript


This topic is 3511 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Can anyone suggest how one can generate an Outlook for Mac meeting invitation via Scriptmaker's 'Perform Applescript'.  

 

It needs to manage variables such as date, time, duration, subject, attendees, scheduling, etc

 

(I have  a pretty basic grasp of Applescript!)

Link to comment
Share on other sites

Try something along these lines:

Let ( [
  // these would be calculated from field names
  calendarName = Quote ( "Calendar" ) ;
  theDate = Get ( CurrentDate ) ;
  timeBegin = Time ( 18 ; 0 ; 0 ) ;
  timeEnd = Time ( 19 ; 0 ; 0 ) ;
  subject = Quote ( "Test" ) ;
  tsBegin = Quote ( Timestamp ( thedate ; timeBegin ) ) ;
  tsEnd = Quote ( Timestamp ( thedate ; timeEnd ) )
  ] ;
  List (
  "tell application " & Quote ( "Microsoft Outlook" ) ;
    "tell calendar " & calendarName ;
      "set newApp to make new calendar event at end of calendar events with properties 
          { 
          subject:" & subject & ",
          start time:date " & tsBegin & ",  
          end time:date " & tsEnd & "
          }" ;
    "end" ;
  "end" ;
  )
)

Look up the Outlook dictionary for the other properties, and/or create a dummy event in Outlook, then read (“get”) its complete list of properties with the ScriptEditor.

 

Using a variable to store the result of the “make” command would e.g. let you query the ID of the new event and store it in your database. 

Link to comment
Share on other sites

This topic is 3511 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.