Author Topic: Autohotkey and QFR  (Read 1040 times)

0 Members and 1 Guest are viewing this topic.

Offline Jixr

  • Thread Starter
  • Posts: 864
  • Location: Ireland
Autohotkey and QFR
« 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?

Offline SpAmRaY

  • NOT a Moderator
  • * Certified Spammer
  • Posts: 14667
  • Location: ¯\(°_o)/¯
  • because reasons.......
Re: Autohotkey and QFR
« Reply #1 on: Wed, 13 November 2013, 10:01:40 »
Most FN keys are hardware only and you can't use them with autohotkey.

Offline esoomenona

  • Gnillort?
  • Posts: 5323
Re: Autohotkey and QFR
« Reply #2 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

Offline Jixr

  • Thread Starter
  • Posts: 864
  • Location: Ireland
Re: Autohotkey and QFR
« Reply #3 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.
« Last Edit: Wed, 13 November 2013, 10:10:29 by Jixr »