|
in:
|
|
| Forums > Talk About It! > Hobbies and Interests > Computers > Ergonomic Mouseless Alternatives | ||
| Ergonomic Mouseless Alternatives | Thread Tools | Search this Thread |
|
|
#1 | |
|
Back-9-Guerrilla☠
Join Date: Jul 2010
Posts: 1,473
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
This is a tutorial of a method I worked on to dodge mouse clicking. I read about diy foot controllers for music software and made a script for left, right, middle, double click, click down, and click ups using a keyboard instead of a mouse. I might get into alternatives for mouse movement later or if anyone wants to talk about styles add to the bottom
![]() Autohotkey (AHK) was made for macros, read all about it near the downloads section https://www.autohotkey.com/download/ Basic Concept: When I press the insert key on my keyboard I want to trick the computer into thinking I'm clicking the mouse. To do this I wrote a script in a text file saying Insert=Right Mouse Click. Now when I press the Insert key on my keyboard AHK catches it and tells the computer its a mouse click. I originally wrote a script to assign these keys Page Up for a Right Click Home Key for a Middle Click and Insert Key for a Left Click This was to try out the software and worked using my left hand to move the mouse and my right hand to click and type from the keyboard. I later turned the script to work with a separate keyboard for clicking with my feet. To do this I removed all but seven keys from the keyboard - Esc, F5, F8, F9, F12, F Lock, & Num Lock. I removed the other keys so I wouldn't accidentally start typing all over the place with my feet. this seems like a good place for an emoticon neon paint helps me find the keys in the dark with a black light on.Next I wrote a script for the keys that I left on the keyboard, I wanted them to to emulate the mouse so I edited the script to tell Autohotkey what mouse clicks to associate with what keystrokes. ESC::MouseClick, Left,,,2 F8::MouseClick, right F9::MouseClick, left NumLock::MouseClick, middle F12::Click, down I think I ruled out needing F3 for a Click Up keystroke for some reason. Just right clicking again works fine check some of the https://forum.ableton.com/viewtopic.php?f=4&t=112242 This a copy of my script, if you have installed AHK then you can edit this into a the sample script and run it right away or I think if you create a new text file save as testscript.ahk and right click<open with Autohotkey Quote:
tbc
|
|
|
|
|
|
|
#2 |
|
Trust me.. I'm A Professional..
Join Date: Aug 2007
Location: that one spot
Posts: 1,223
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
very intersting.. not sure if i would use something like this as I like to game and always have a mouse in my right hand. might mess around with this on another box or in a VM though, could be fun.
__________________
"My dads been stealing my weed since i was eleven."-chubbynugs fire it up... Comedy and herb - two of my favorite pasttimes in one place... I <3 IC Mag The fact that I pay taxes and contribute to society should be more than enough reason to allow me to smoke marijuana - denying me that right is cruel and unusual, and damn close to being a controlling government, not a controlled government. - j. "Man is Obsolete" - every day I watch the news and I feel this is more and more true... (Fear Factory) i'm the one without a soul i'm the one with this big fcuking hole - no new tale to tell twenty-six years on my way to hell - - - [Wish - NIN] |
|
|
|
|
|
|
|