Is there a way to turn off Mouse Wheel ?

Is there a way to turn off Mouse Wheel ?

in Guild Wars 2 Discussion

Posted by: pupi.2465

pupi.2465

I’ve been having this problem with accidentally pressing the wheel up and zooming the camera while on pvp, my dodge is on mid mouse button, so its kinda annoying, i have to zoom out constantly on fights.

I checked otpions, and couldnt find a turn off for the Wheel zooming, it was marked the “page up” and “page down”, unbind them but still the wheel zoom in and out.

My mouse is the warrior multilazer,

http://ebinformatica.inf.br/loja/product_images/z/402/3542_0__45538_std.jpg

On its software there is no otpion to turn wheel off aswell,

can someone help me ?

Is there a way to turn off Mouse Wheel ?

in Guild Wars 2 Discussion

Posted by: Fermi.2409

Fermi.2409

Maybe use autohotkey to reassign scroll up/down to some other keyboard button? With a mouse with that many buttons, it should be manageable to just rebind dodge to something else, though.

HAF 912 | i7-3770k @ 4.5 GHz | MSI GTX 1070 GAMING 8GB | Gigabyte Z77X-D3H
EGVA SuperNOVA B2 750W | 16 GB DDR3 1600 | Acer XG270HU | Win 10×64
MX Brown Quickfire XT | Commander Shaussman [AGNY]- Fort Aspenwood

Is there a way to turn off Mouse Wheel ?

in Guild Wars 2 Discussion

Posted by: StinVec.3621

StinVec.3621

Here is one way, though I am sure there are better alternatives to having to run this rebind script prior to each play session:

  • Download and install AutoHotKey (AHK)
    It is a program that is useful for making individual scripts to execute make custom keybinds for individual characters, or even individual games
  • Create a text file (myfilename.txt) and add this text into it and then save it

#NoEnv
#SingleInstance Force
SetTitleMatchMode, 3
#IfWinActive, Guild Wars 2

; “F1” is the customizable key used to toggle normal scroll wheel functions on and off

F1::Suspend
WheelDown::return
WheelUp::return

  • Rename the .txt extension on it to instead be .ahk
  • Double-click/execute this script prior to or during a game session to unbind wheel-up and wheel-down functionality that will only affect the mouse wheel while GW2 is the active window (so mouse wheel still works fine outside of the game even with it running)
  • You can customize the activation/deactivation key so you can disable and re-enable the scroll wheel functionality on the fly without having to close the script and re-open it every time.

So:
Executing the script unbinds mouse wheel up/down functionality in GW2
Pressing F1 disables the script so they work normally again
Pressing F1 again re-enables the script so the scroll wheel up/down functionality is disabled again

You can find all of the different key names you can use to replace F1 here: https://www.autohotkey.com/docs/KeyList.htm

| [“I’d really like this…” — Resource for Gifting Strangers] |
| [Free Ports For All “Not So Secret” JP Needs (and 1st Try Dive Tips)] |
| [Classic Thread: “all is vain”] |

(edited by StinVec.3621)

Is there a way to turn off Mouse Wheel ?

in Guild Wars 2 Discussion

Posted by: Weirwynn.2390

Weirwynn.2390

I’ve been having this problem with accidentally pressing the wheel up and zooming the camera while on pvp, my dodge is on mid mouse button, so its kinda annoying, i have to zoom out constantly on fights.

Use something else for dodge? You clearly have plenty of options on that mouse. Wheel-click is an abomination.

Is there a way to turn off Mouse Wheel ?

in Guild Wars 2 Discussion

Posted by: pupi.2465

pupi.2465

Here is one way, though I am sure there are better alternatives to having to run this rebind script prior to each play session:

  • Download and install AutoHotKey (AHK)
    It is a program that is useful for making individual scripts to execute make custom keybinds for individual characters, or even individual games
  • Create a text file (myfilename.txt) and add this text into it and then save it

#NoEnv
#SingleInstance Force
SetTitleMatchMode, 3
#IfWinActive, Guild Wars 2

; “F1” is the customizable key used to toggle normal scroll wheel functions on and off

F1::Suspend
WheelDown::return
WheelUp::return

  • Rename the .txt extension on it to instead be .ahk
  • Double-click/execute this script prior to or during a game session to unbind wheel-up and wheel-down functionality that will only affect the mouse wheel while GW2 is the active window (so mouse wheel still works fine outside of the game even with it running)
  • You can customize the activation/deactivation key so you can disable and re-enable the scroll wheel functionality on the fly without having to close the script and re-open it every time.

So:
Executing the script unbinds mouse wheel up/down functionality in GW2
Pressing F1 disables the script so they work normally again
Pressing F1 again re-enables the script so the scroll wheel up/down functionality is disabled again

You can find all of the different key names you can use to replace F1 here: https://www.autohotkey.com/docs/KeyList.htm

Thank You very much Sir! This saved my day! I love how it stills there are nice ppl in virtual world.

As for the others saying “just use another button for dodge” , i play this game since beta, and use dodge on mid mouse button, even with a mouse with many other buttons, for me, it doesnt work well as in the mid button… i am sucessful in pvp this way, so im not changing, also, the other buttons already have its binds.

Thank you and gg all.

Is there a way to turn off Mouse Wheel ?

in Guild Wars 2 Discussion

Posted by: Brother Grimm.5176

Brother Grimm.5176

Not sure if you mouse drive may have a way to disable the wheel (but that would likely disable your wheel button as well….)?

We go out in the world and take our chances
Fate is just the weight of circumstances
That’s the way that lady luck dances

Is there a way to turn off Mouse Wheel ?

in Guild Wars 2 Discussion

Posted by: StinVec.3621

StinVec.3621

Thank You very much Sir! This saved my day! I love how it stills there are nice ppl in virtual world.

As for the others saying “just use another button for dodge” , i play this game since beta, and use dodge on mid mouse button, even with a mouse with many other buttons, for me, it doesnt work well as in the mid button… i am sucessful in pvp this way, so im not changing, also, the other buttons already have its binds.

Thank you and gg all.

Very glad to hear it works as you desire it to. You’re quite welcome.

If you wanted to remove the task of having to launch the script and GW2 separately, you can also look into creating a shortcut that launches both the script and GW2. May help in the future if you run into some instances where you forget to launch the script and have to tab out of GW2 later on to launch it. I tend to do that sometimes myself, but do not forget frequently enough to put forth the effort to make the dual launch shortcut.

Happy gaming!

| [“I’d really like this…” — Resource for Gifting Strangers] |
| [Free Ports For All “Not So Secret” JP Needs (and 1st Try Dive Tips)] |
| [Classic Thread: “all is vain”] |

Is there a way to turn off Mouse Wheel ?

in Guild Wars 2 Discussion

Posted by: Kreths.8457

Kreths.8457

Here is one way, though I am sure there are better alternatives to having to run this rebind script prior to each play session:

  • Download and install AutoHotKey (AHK)
    It is a program that is useful for making individual scripts to execute make custom keybinds for individual characters, or even individual games
  • Create a text file (myfilename.txt) and add this text into it and then save it

#NoEnv
#SingleInstance Force
SetTitleMatchMode, 3
#IfWinActive, Guild Wars 2

; “F1” is the customizable key used to toggle normal scroll wheel functions on and off

F1::Suspend
WheelDown::return
WheelUp::return

  • Rename the .txt extension on it to instead be .ahk
  • Double-click/execute this script prior to or during a game session to unbind wheel-up and wheel-down functionality that will only affect the mouse wheel while GW2 is the active window (so mouse wheel still works fine outside of the game even with it running)
  • You can customize the activation/deactivation key so you can disable and re-enable the scroll wheel functionality on the fly without having to close the script and re-open it every time.

So:
Executing the script unbinds mouse wheel up/down functionality in GW2
Pressing F1 disables the script so they work normally again
Pressing F1 again re-enables the script so the scroll wheel up/down functionality is disabled again

You can find all of the different key names you can use to replace F1 here: https://www.autohotkey.com/docs/KeyList.htm

A long time ago but…. thx Bro !