Results 1 to 4 of 4

Thread: Laptop framskip: AutoHotkey working for anyone?

  
  1. #1

    Default Laptop framskip: AutoHotkey working for anyone?

    I'm currently without a desktop keyboard, so I am unable to effectively press ctrl+ (it is apparently effectively read in as ctrl shift +), and I'm trying to get it to work with an AutoHotkey script, but without success so far. It apparently has issues with DirectX. I'm trying the options, but having trouble finding anything that does the trick. Anyone find a working solution?

    Download it here
    https://autohotkey.com/download/
    Last edited by spartahawk; February 6th, 2018 at 05:57.

  2. #2

    Default Re: Laptop framskip: AutoHotkey working for anyone?

    I thought this was worth figuring out because my keyboard doesn't have a numpad either, lol.
    Code:
    ~F1::
    	Send ^{NumpadAdd down} ;Holds
    return
    ~F1 up::
    	Send ^{NumpadAdd up} ;Releases
    return
    ~F2::
    	Send ^{NumpadSub down} ;Holds
    return
    ~F2 up::
    	Send ^{NumpadSub up} ;Releases
    return
    It's lacking the on-press increment though.
    Last edited by rainlizard; February 6th, 2018 at 08:45.

  3. #3

    Default Re: Laptop framskip: AutoHotkey working for anyone?

    So that worked for you?

    I wonder if I can just add an option in-game, so that "ctrl =" on a laptop works too.

  4. #4

    Default Re: Laptop framskip: AutoHotkey working for anyone?

    Remember to reload the script after you edit it, and you have to hold F1 for a second before it starts increasing, not just tap it. It works for me. Maybe different hardware or windows versions is interfering.

Similar Threads

  1. Scrolling not working
    By GoSu_Ermac in forum KeeperFX
    Replies: 1
    Last Post: February 19th, 2013, 07:44
  2. Campaigns not working in FX
    By Sathrax in forum KeeperFX
    Replies: 1
    Last Post: May 29th, 2012, 20:36
  3. DK vista laptop
    By M4BZ1084 gamer in forum DK1 Troubleshooting
    Replies: 3
    Last Post: April 22nd, 2011, 12:46
  4. I have DK1 working on Vista YAY
    By ryanxsh in forum Dungeon Keeper 1
    Replies: 11
    Last Post: April 17th, 2010, 15:19

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •