0

Keyboard shortcuts for Image->Resolution menu items

May we please have keyboard shortcuts for the items under the Image->Resolution menu? Our studio would particularly appreciate shortcuts for the 0.25 and 0.5 items.

Thank you,

Dugan Chen

 

 

1 comment

  • 0
    Avatar
    Jon Morley

    Hi Dugan,

    You can make a package that adds hotkeys for those operations. In Python the code would look something like the following:

        def doStuff(event):
            commands.setFloatProperty("#RVFormat.geometry.scale", [0.25])
            commands.reload()
        commands.bind("default", "global", "key-down--X", doStuff, "")

    Through that approach you can have settings beyond those in the menu.

    Thanks,
    Jon

Please sign in to leave a comment.