geekhack

geekhack Community => Keyboards => Topic started by: Jixr on Wed, 13 November 2013, 09:58:54

Title: Autohotkey and QFR
Post 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?
Title: Re: Autohotkey and QFR
Post by: SpAmRaY on Wed, 13 November 2013, 10:01:40
Most FN keys are hardware only and you can't use them with autohotkey.
Title: Re: Autohotkey and QFR
Post by: esoomenona on Wed, 13 November 2013, 10:02:55
See if you can find a scan code for whatever Fn+F5 does, then assign this: F5::SCxxx
Title: Re: Autohotkey and QFR
Post by: Jixr on Wed, 13 November 2013, 10:05:38
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.