View Single Post
  #25  
Old 11-12-2015, 01:35 AM
Oliver M Oliver M is offline
Member
 
Join Date: Dec 1969
Location: Europe
Posts: 1,108
Default Re: Automation AppleScripts for Pro Tools (Mac)

Quote:
Originally Posted by Marco Bernardo View Post

Can I ask you just some little things? If yes, here is the first one.

What it's the command to select inside a menu, example:
I open Selected Tracks as New Session... and I want to make a tick on the items to copy - > audio files
Hi Marco,

thats:

Code:
click checkbox "Audio Files"
Wrapped in a tell block:

Code:
tell application "System Events"
	tell process "Pro Tools"
		tell window "Save Session Copy"
			click checkbox "Audio Files"
		end tell
	end tell
end tell

Oliver
Reply With Quote