PDA

View Full Version : Laptop framskip: AutoHotkey working for anyone?



spartahawk
February 6th, 2018, 04:51
I'm currently without a desktop keyboard, so I am unable to effectively press ctrl+ (it is apparently effectively read in as ctrl shift +), and I'm trying to get it to work with an AutoHotkey script, but without success so far. It apparently has issues with DirectX. I'm trying the options, but having trouble finding anything that does the trick. Anyone find a working solution?

Download it here
https://autohotkey.com/download/

rainlizard
February 6th, 2018, 08:42
I thought this was worth figuring out because my keyboard doesn't have a numpad either, lol.


~F1::
Send ^{NumpadAdd down} ;Holds
return
~F1 up::
Send ^{NumpadAdd up} ;Releases
return
~F2::
Send ^{NumpadSub down} ;Holds
return
~F2 up::
Send ^{NumpadSub up} ;Releases
return

It's lacking the on-press increment though.

spartahawk
February 6th, 2018, 19:12
So that worked for you?

I wonder if I can just add an option in-game, so that "ctrl =" on a laptop works too.

rainlizard
February 6th, 2018, 20:03
Remember to reload the script after you edit it, and you have to hold F1 for a second before it starts increasing, not just tap it. It works for me. Maybe different hardware or windows versions is interfering.