Copy link to clipboard
Copied
Hello! Is there a way to rotate image via radial controller (mini keydial)? For instance, in Krita I can bind ctrl + ] and ctrl + [ to radial controller and rotate image by rotating controller wheel.
Copy link to clipboard
Copied
What about using the rotate tool or it's Shortcut:
Copy link to clipboard
Copied
I don't think it is suitable for radial controller. Need to hold R + hold left button + move mouse for rotating.
Controller wheel can be mappped to 2 buttons, one for clockwise and another for counterclockwise rotation. So are there any?
Copy link to clipboard
Copied
An interesting point is that through the script we can set the angle of the canvas (and it will even be saved in the tool settings), but in fact there is no rotation. It can be assumed that the code does not work, but, for example, if we change the rotateAll option, then changing it through the script immediately appears on the toolbar.
#target photoshop;
var s2t = stringIDToTypeID;
(r = new ActionReference()).putClass(s2t("rotateTool"));
(d = new ActionDescriptor()).putReference(s2t("target"), r);
(d1 = new ActionDescriptor()).putInteger(s2t('angle'),99)
d.putObject(s2t("to"), s2t("target"), d1);
executeAction(s2t("set"), d, DialogModes.NO);
Copy link to clipboard
Copied
Do you want to rotate an image or only its display?
Copy link to clipboard
Copied
Just display
Find more inspiration, events, and resources on the new Adobe Community
Explore Now