Skip to main content
Known Participant
October 16, 2017
Answered

Hotkey the tranform button?

  • October 16, 2017
  • 4 replies
  • 1118 views

When I have a clip in the timeline and I select it is there a way to setup a hotkey for the transform button?

Right now I have to double click the clip, goto the source monitor, click the effects menu, then click the transform button next to the "Motion" section.

I've looked all throughout the keyboard setting and I can't find it. Surely I'm not the only one who wants it.

Alex

    Correct answer Roei Tzoref

    How about Double click in the program window and you get the option to move/resize/rotate you clip. Make sure the CTI is on the clip.

    4 replies

    TaranVH
    Inspiring
    October 16, 2017

    Yes, you can double click in the Program monitor, but this has a huge potential drawback: It will select an object that is above the others in the layer stack, even when that object is invisible for a variety of reasons:

    - It will select a disabled clip

    - It will select an adjustment layer

    - It will select an object even if you double click on the CROPPED portion

    - It will select an object even if you double click on a fully transparent area of that image.

    Therefore, a shortcut for the transform icon is still necessary for these situations. But unfortunately, no such feature exists. Not in vanilla Premiere Pro, anyway...

    Now, I have already scripted this feature, using AutoHotKey. Here it is:

    F5::clickTransformIcon2()

    ;EFFECT CONTROLS PANEL ---TRANSFORM ICON CLICKER

    clickTransformIcon2()

    {

    BlockInput, On

    SetKeyDelay, 0

    MouseGetPos, xpos, ypos

    ControlGetPos, X, Y, Width, Height, DroverLord - Window Class3, ahk_class Premiere Pro, DroverLord - TabPanel Window ;This is the Effect controls panel. Info gotten from Window Spy.

    X := X+85 ;change these variables to match the icon's position on your screen

    Y := Y+100 ;change these variables to match the icon's position on your screen

    MouseMove, X, Y, 0

    MouseClick, left

    MouseMove, %xpos%, %ypos%, 0

    BlockInput, Off

    }

    ...and here it is in the context of all my other scripts:

    https://github.com/TaranVH/2nd-keyboard/blob/2cb6458abc36b2a7c7e979885eb1c99faaaccfdb/All%20Premiere%20Functions.ahk#L875

    But you probably don't know how to use AutoHotKey, and it won't be worthwhile to learn, unless you do a lot of editing in Premiere.

    Therefore, I strongly suggest you file a wishform for this feature, and link back to this thread.

    Wishform - Adobe Premiere Pro

    Known Participant
    October 16, 2017

    Sweet! didn't know I could do that.

    Thanks

    Ann Bens
    Community Expert
    Community Expert
    October 16, 2017

    Have Effect Controls open permanently.

    Set Selection Follow Playhead.

    Everytime you hover playhead over clip (or use arrow up/down) it autom. opens in the EC.

    Hit Transform button.

    TaranVH
    Inspiring
    October 16, 2017

    Ann, that still has several issues:

    -Adjustment layers will become selected instead (unless they are locked or not track targeted)

    -Disabled clips will become selected instead (I have already made a feature request to remove this behaviour)

    and of course...

    -The user would still have to click the Transform Icon manually, which is far slower than just having a keyboard shortcut.

    Inspiring
    October 16, 2017

    Double click in the Program Monitor.

    MtD

    Roei Tzoref
    Roei TzorefCorrect answer
    Legend
    October 16, 2017

    How about Double click in the program window and you get the option to move/resize/rotate you clip. Make sure the CTI is on the clip.