I have the knob of the wheel assigned to the zoom tool. How can i zoom + or - asign to the wheel itself ? @user
💬
general Grid
How to add zoom in/out with the wheel on photoshop?
ability · · 3 replies
Replies (3)
Hey, for this I suggest using macro (Alt + mouse wheel up & down) messages. Here’s how you can set it up:
Turn off Minimalist Mode (top right corner).
Go to the Endless tab and delete the MIDI action block if it’s visible.
Set Endless mode to 1 (Relative)
Add an If action block with this logic:
if self:endless_value() > 64 then
- put a keyboard action block with L Alt keydown
- and a mouse wheel position +1
end
Add another If action block with this logic:
if self:endless_value() < 64 then
-put a keyboard action block with L Alt keydown
-and a mouse wheel position -1
endFinally, add a keyboard action block at the end with L Alt key up so the key doesn’t stay pressed (otherwise your computer might go crazy :D).
thanks for your reply! I will try this
View on Discord
This post is from the Intech Studio Discord community.
