geekhack
geekhack Community => Keyboards => Topic started by: Jixr on Wed, 13 November 2013, 09:58:54
-
anyone know what the autohotkey key is for the FN key on a QFR?
I'm trying to write a script so I don't have to press FN+F(number) to use the media keys.
Current script
*F5:: Send {thenameoftheFNkey}{F5}
halp?
-
Most FN keys are hardware only and you can't use them with autohotkey.
-
See if you can find a scan code for whatever Fn+F5 does, then assign this: F5::SCxxx
-
poo...
Maybe I can just route the f media keys a different way then.
theres gotta be a media hotkey script on the internet somewhere
I'll see about scanning for the FN key, i've never done that before though.
EDIT: I'm a tard,
all i needed was
F5::Send {Media_Play_Pause}
etc for all the media keys.