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
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
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