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.

    One-handed page-up/page-down on a laptop with no dedicated keys

    Discussion in 'Dell XPS and Studio XPS' started by Ashers, Sep 3, 2014.

  1. Ashers

    Ashers Notebook Evangelist

    Reputations:
    120
    Messages:
    575
    Likes Received:
    39
    Trophy Points:
    41
    Many laptops these days do not have dedicated Pg Up/Pg Dn/Home/End keys, and require a function key in combination with the cursor keys. A few machines have a second function key on the right-hand-side so you can page up/down with one hand, but many do not. If, like me, you would like the ability to page-up/down with one hand, here is the way that I have achieved it in Windows (of course, there may be other solutions).

    - Download autohotkey (which enables you to reprogram keys with a script), available here:
    AutoHotkey
    - include the following in the default start-up script:

    Code:
    ;page-up/down using right-shift
    >+Up::send {RShift Up}{PgUp}
    >+Down::send {RShift Up}{PgDn}
    >+Left::send {RShift Up}{Home}
    >+Right::send {RShift Up}{End}
    What this does is reprogram the right-shift key such that if you use it with the cursor keys, it does page-up/down, home/end. The left-shift key remains unchanged, and so can still be used with the cursor keys to select text etc. You just then need to ensure that autohotkey starts when windows starts. I find that this (using the right-shift key) makes paging up/down much easier.

    I hope someone finds this useful.
     
  2. ExParrot

    ExParrot Notebook Geek

    Reputations:
    8
    Messages:
    99
    Likes Received:
    18
    Trophy Points:
    16
    Very useful for us coders! Thanks.

    To enable PageHome and PageEnd add these 2 lines to the script:

    Code:
    ^>+Left::send {RShift Up}^{Home}
    ^>+Right::send {RShift Up}^{End}
     
  3. StormJumper

    StormJumper Notebook Virtuoso

    Reputations:
    579
    Messages:
    3,537
    Likes Received:
    488
    Trophy Points:
    151
    At least on my XPS 1710 and 1730 have numeric keypad...whew.....
     
  4. KamaL

    KamaL Notebook Consultant

    Reputations:
    0
    Messages:
    129
    Likes Received:
    9
    Trophy Points:
    31
    Thanks guys! I really missed the dedicated keys, so now it's a much better experience on my XPS 15 9530!