View Single Post
  #251  
Old 10-13-2019, 06:55 PM
Oliver M Oliver M is offline
Member
 
Join Date: Dec 1969
Location: Europe
Posts: 1,102
Default Re: Automation AppleScripts for Pro Tools (Mac)

Here's some simple code to open a PT session with the Finder:

Code:
set mySession to (path to documents folder as text) & "Pro Tools:mySessions:Test_Session.ptx" as text

tell application "Finder" to open mySession using application file id "com.avid.ProTools" as alias
Reply With Quote