Last active
January 1, 2016 21:58
-
-
Save 10sr/8206602 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; Maps for Numpads | |
| ; 8: zoomin | |
| ; 2: zoomout | |
| ; 5: grab | |
| ; 4: rotate left | |
| ; 6: rotate right | |
| ; 1: undo | |
| ; 3: redo | |
| ; 9: eraser | |
| ; 7: spoit | |
| ; -: smaller blush | |
| ; +; bigger blush | |
| ; enter: save | |
| ; for corel painter essentials | |
| #IfWinActive ahk_class ASIMainWndClass | |
| Numpad8::^NumpadAdd | |
| Numpad2::^- | |
| Numpad5::Space | |
| NumpadAdd::] | |
| NumpadSub::[ | |
| Numpad1::^z | |
| Numpad3::^y | |
| NumpadEnter::^s | |
| ; for clip studio paint | |
| #IfWinActive, CLIP STUDIO PAINT | |
| Numpad8::^; | |
| Numpad2::^- | |
| Numpad4::- | |
| Numpad6::^ | |
| Numpad5::Space | |
| NumpadAdd::] | |
| NumpadSub::[ | |
| Numpad1::^z | |
| Numpad3::^y | |
| Numpad9::e | |
| Numpad7::Alt | |
| NumpadEnter::^s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment