Created
December 18, 2012 05:02
-
-
Save Koze/4325186 to your computer and use it in GitHub Desktop.
Mark > Play > In to Out ⇧] on Final Cut Pro 7 (AppleScript)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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