The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    Holding Fn key to toggle Numlock

    Discussion in 'Windows OS and Software' started by evenflow, Mar 6, 2006.

  1. evenflow

    evenflow Notebook Enthusiast

    Reputations:
    0
    Messages:
    10
    Likes Received:
    0
    Trophy Points:
    5
    Hi!

    I know it's common to have to hit Fn+Numlock to toogle the numeric pad on and off on notebooks. I don't particularly like this behaviour. If you need to switch between text and digits alot it is not an optimal solution. Instead I would like to be able to press and hold only the Fn key as a modifier (like shift, ctrl or alt) which would temporarily activate numlock for as long as I keep holding it. When I release it numlock is deactivated...

    Anybody know of a software that can do this? Some macro software should be able to do this... but which one? Or is there perhaps some dedicated application available, because surely others must think Fn+Numlock is just as tedious as I do!?

    Thanks!
     
  2. TheRunaway

    TheRunaway Notebook Consultant

    Reputations:
    13
    Messages:
    252
    Likes Received:
    0
    Trophy Points:
    30
    I'm not sure, but I think if you just hit num lock, then you can hold fn and press the keys for the appropriate numbers.
     
  3. evenflow

    evenflow Notebook Enthusiast

    Reputations:
    0
    Messages:
    10
    Likes Received:
    0
    Trophy Points:
    5
    Hmmm...

    My Num Lock can't be turned on and off by itself like that. To turn it on and off I have to hit Fn+NumLock. The numLock shares it's key with Insert.

    This is how it works by me (on my 2nd hand asus s1300):
    If NumLock is off the keys naturally type letters.
    If NumLock is off and I hold the Fn key the keys represent the arrows, home, pgdn etc.
    If NumLock is on the keys type numbers.
    If NumLock is on and I hold Fn while typing they go back to typing letters.

    Does this work differently on different notebooks? Perhaps there exists a set of keyboard drivers that work the way I want. I'm using "Standard 101/102-Key or Microsoft Natural PS/2 keyboard" as driver now. Perhaps switching to an alternate one will provide a different behavior?
     
  4. warlord

    warlord Notebook Consultant

    Reputations:
    25
    Messages:
    272
    Likes Received:
    0
    Trophy Points:
    30
    You should have the option in your bios to select FN key or Numlock to activate your number pad. There should also be and option to set Numlock on or off on startup.
     
  5. evenflow

    evenflow Notebook Enthusiast

    Reputations:
    0
    Messages:
    10
    Likes Received:
    0
    Trophy Points:
    5
    That sounds like a bit of a bummer for me. The options available in my bios are VERY limited. Nothing to do with keyboards in there at all infact. I'll try and see if I can't find a compatible bios. So until I figure out another way I'm using AutoHotkey to have my LeftAlt key work as a modifier for NumLock (turns it on while Alt is pressed, and off when Alt is released;Unfortunatly it is not able to see my Fn key at all, so can't map to that :(). In case anyone else is interested, heres the script I put together:

    Code:
    LAlt::
    Send, {NumLock}
    KeyWait, LAlt
    Send, {NumLock}
    return
    Thanks fellas!