Is it possible to bind Razer Hypershift to a non Razer keyboard with AHK?

Ask gaming related questions
hobbes322
Posts: 2
Joined: 23 Sep 2019, 17:25

Is it possible to bind Razer Hypershift to a non Razer keyboard with AHK?

Post by hobbes322 » 14 Mar 2023, 06:28

So Razer only lets you bind their Hypershift mode to a keyboard if it's a Razer product. Which sucks. I can bind it to my mouse but the mouse I use has limited buttons and dedicating a single one to Hypershift is just not good since I honestly use the entire mouse for shit in the games I play. I read online a few suggestions to try AHK to try and bypass the need for a Razer keyboard but I am not sure that might work. I was wondering if anyone had any ideas how that might work and then I can try to possibly put together some kind of script. I am new to AHK but willing to learn. AT least learn enough to make this script possible hopefully.

Thanks in advance for any helps I receive.

colt
Posts: 291
Joined: 04 Aug 2014, 23:12
Location: Portland Oregon

Re: Is it possible to bind Razer Hypershift to a non Razer keyboard with AHK?

Post by colt » 05 Oct 2023, 01:26

I don't think this is natively possible. You can emulate it though.

Set your default keys to to keyboard function keys F13-F24.
mouse.jpg
mouse.jpg (45.09 KiB) Viewed 1091 times
Then you can can latch onto these like regular hotkeys.

Code: Select all

f13::	
	tooltip "standard code"
return

^f13::	
	tooltip "my hypershift code"

^!f13::
	tooltip "my mega hypershift code"
return
Couple downsides:
-you won't be able to interface with the mouse internals like setting sensitivity or changing profiles
-you have to write your own macros

On the upside you don't have to keep synapse running to handle the macro launching.

Post Reply

Return to “Gaming”