Beginner - FCP Keyboard Shortcut for Inspector Rotation of clip? #3133
-
Hello I'm new to CommandPost. It looks pretty cool, but I don't know it very well yet. I have been online watching YouTube videos and scouring the support documentation and I have not found a solution to my issue. I often need to rotate footage by 90º or 180º. I would LOVE to have a hotkey (command-F9, for instance) to accomplish this without needing to go to the Inspector inside FCP for each clip or as a batch. Is there a way to set this up using CommandPost? Thanks very much. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
@latenitefilms may know of an existing shortcut that does this on a single clip, but for a batch I suspect it would require a custom plugin. The good news is, it's not a complicated plugin, but will require a bit of Lua code. I don't have my computer in front of me at the moment, but one of us can probably put something together in the not-too-distant future. One thing to note is that as of 10.6.4, there was a selection bug in the timeline where selecting Secondary Story clips will wipe the list of selected clips (from a code point of view). Haven't had a chance to test if it has been fixed in the release overnight. |
Beta Was this translation helpful? Give feedback.
-
Apologies for the delayed reply. The easiest way to do this is with a Lua Snippet. From the menubar select Preferences > Scripting: Click the New button then type a name. Paste in this code (changing the 90 to whatever): cp.apple.finalcutpro.inspector.video:transform():rotation():show():value(90) You can now access your Snippet through the Search Console, and assign it to a keyboard shortcut or control surface button. |
Beta Was this translation helpful? Give feedback.
-
Thanks very much for your reply. This makes it easy for me to make a variety of controls for often-used actions! |
Beta Was this translation helpful? Give feedback.
-
Condivido i miei codici LUA snippet, se a qualcuno può aiutare: cp.apple.finalcutpro:launch():timeline():show():selectClip() cp.apple.finalcutpro:launch():selectMenu({"Window", "Go To", "Timeline"}) -- ti porta nella timeline cp.apple.finalcutpro:launch():selectMenu({"Edit", "Deselect All"}) --deselect all clip in timeline -- Copy attribute and Paste to Next Clip
|
Beta Was this translation helpful? Give feedback.
Apologies for the delayed reply. The easiest way to do this is with a Lua Snippet.
From the menubar select Preferences > Scripting:
Click the New button then type a name.
Paste in this code (changing the 90 to whatever):
You can now access your Snippet through the Search Console, and assign it to a keyboard shortcut or control surface button.