hey there from germany,
i just want to make the following work:
when i SCROLL the mousewheel (NOT PRESS THAT BUTTON!!), i want to emulate the keystroke "tab".
im gonna use it ingame, so i dont want to have any delay.
my logitech mouseware ("setpoint" isnt capable of that.
hope u can help me, im totally new to this!!
regards
Notice: This forum has been recovered from an old backup, so some content, links, and dates may be outdated. The forum is currently read-only while we restore sign-in and registration functionality. Details
If you find this forum valuable and would like to help keep it online, donations to help cover hosting and domain costs are greatly appreciated, but never expected. You can support the forum through Buy Me a Coffee or Ko-fi. Thank you for helping preserve the EventGhost community.
If you find this forum valuable and would like to help keep it online, donations to help cover hosting and domain costs are greatly appreciated, but never expected. You can support the forum through Buy Me a Coffee or Ko-fi. Thank you for helping preserve the EventGhost community.
mousewheel scroll -> "TAB"
Re: mousewheel scroll -> "TAB"
The mousewheel isn't captured and games normally work on a level system api you can emulate with special drivers in place.
Re: mousewheel scroll -> "TAB"
ok thx, but i still dont know what to do..
i can tell you what i did in the past: i used the program "girder" and someone wrote a macro which enabled me to do as i inititally posted. but i cant use the freeware of that prog under vista. my OP.
aint that really possible qwith this tool??
i can tell you what i did in the past: i used the program "girder" and someone wrote a macro which enabled me to do as i inititally posted. but i cant use the freeware of that prog under vista. my OP.
aint that really possible qwith this tool??
Re: mousewheel scroll -> "TAB"
I don't know if EventGhost can do it, but when I need to remap mouse/keyboard buttons functionality I use freeware Autohotkey.Rabbuni wrote:ok thx, but i still dont know what to do..
Example script to map mousewheeldown -> tab
Code: Select all
WheelDown::Send, {tab}jonib
