Skip to content

Instantly share code, notes, and snippets.

@Koze
Created December 18, 2012 05:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Koze/4325186 to your computer and use it in GitHub Desktop.
Save Koze/4325186 to your computer and use it in GitHub Desktop.
Mark > Play > In to Out ⇧] on Final Cut Pro 7 (AppleScript)
tell application "Final Cut Pro" to activate
tell application "System Events"
if UI elements enabled is false then
keystroke "]" using shift down
else
tell process "Final Cut Pro"
--click menu item "In to Out" of menu 1 of menu item "Play" of menu "Mark" of menu bar 1
click menu item 1 of menu 1 of menu item 21 of menu 6 of menu bar 1
end tell
end if
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment