-
How can I make this modification to get right mouse graph panning similar to other software like Unreal? I don't mind having the contextual menu on middle click, or even on mouse 4 or 5 if possible. Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
You can have this (in any variant, what you like, what you even dream) -- with tiny and free program https://www.autohotkey.com/ The program can assign ANY mouse or keyboard button to ANY key on your mouse or keyboard. And do many more.
This simple Autohotkey code swap MButton (mouse middle-button) with RButton (mouse right button): when you press RButton - program send to system MButton:
|
Beta Was this translation helpful? Give feedback.
-
I'm using a free program called X-Mouse Button Control to set this up in less than 30 seconds. It makes specifying the application or window very easy, but doesn't seem to actually lock it down to only the ComfyUI browser tab. It still functions in other tabs in that specific window. Can AHK somehow target the specific ComfyUI tab? I'm wondering how this would persist when different workflows change the name of the tab. |
Beta Was this translation helpful? Give feedback.
-
1/ I've use different workflows -- and all tabs has the same name 'ComfyUI'.
Google for 'AutoHotkey context-sensitive hotkeys' |
Beta Was this translation helpful? Give feedback.
-
Here's the working script I ended up with
|
Beta Was this translation helpful? Give feedback.
You can have this (in any variant, what you like, what you even dream) -- with tiny and free program https://www.autohotkey.com/
The program can assign ANY mouse or keyboard button to ANY key on your mouse or keyboard. And do many more.
This simple Autohotkey code swap MButton (mouse middle-button) with RButton (mouse right button): when you press RButton - program send to system MButton:
RButton::MButton
You can make this will working only when specified window is active. On other windows mouse will send as default.