Skip to content

Toggle TAB

There is some way to toggle the TAB function on BG:EE? it Would be nice, because I miss a lot of chests by forgetting to press it :P

Comments

  • ST4TICStrikerST4TICStriker Member Posts: 162
    Tape it down?
  • DeeDee Member Posts: 10,447
    I wonder if you could bind it to the Caps-Lock key and do it that way...
  • HelloteamHelloteam Member Posts: 10
    Just make an Autohotkey script. http://www.autohotkey.com/

    Put this into the script file:

    NumPad1::Send, {TAB Down}
    NumPad1 UP::Send {TAB UP}


    When the script is running your NumPad1 key will turn into a TAB-lock key. (Make sure your numpad is on)
  • KirkorKirkor Member Posts: 700
    Wow... Just wow...
    I can't believe people have problems with THAT.

    In original BG1 you had no TAB. Only real men could find treasures!
  • HelloteamHelloteam Member Posts: 10
    Jeah.. back then finding the Ankheg plate in Nashkel was really something!
  • FrecheFreche Member Posts: 473
    edited December 2012
    Helloteam said:

    Just make an Autohotkey script. http://www.autohotkey.com/

    Put this into the script file:

    NumPad1::Send, {TAB Down}
    NumPad1 UP::Send {TAB UP}


    When the script is running your NumPad1 key will turn into a TAB-lock key. (Make sure your numpad is on)

    Pretty sure that is not going to work as a toggle.
    Once you release NP1 it will give the command to release Tab
    What you want to use is:
    Numpad1::
    if GetKeyState("Tab")
    Send {Tab UP}
    else
    Send {Tab DOWN}
    return
    However seemed to work so so after zoning. (I however only tested it between Candlekeep and the Candlekeep Inn)
  • MaxbuuMaxbuu Member Posts: 11
    Wow.. thank you guys!
  • ST4TICStrikerST4TICStriker Member Posts: 162
    edited December 2012
    Kirkor said:

    Wow... Just wow...
    I can't believe people have problems with THAT.

    In original BG1 you had no TAB. Only real men could find treasures!

    I'm pretty sure you always had tab.

    Almost positive, because I was using it to find treasure the wimpy way in IWD

  • TJ_HookerTJ_Hooker Member Posts: 2,438

    Kirkor said:

    Wow... Just wow...
    I can't believe people have problems with THAT.

    In original BG1 you had no TAB. Only real men could find treasures!

    I'm pretty sure you always had tab.

    Almost positive, because I was using it to find treasure the wimpy way in IWD

    Nope, in BG1 there was no way to highlight containers.
  • zarffynzarffyn Member Posts: 175
    The Tab function wasn't added until the ToB expansion pack, in the vanilla games.
  • MaxbuuMaxbuu Member Posts: 11
    I got a way to bug the game and toggle the tab. Hold the TAB and then press the windows button, release the tab and go back to the game. Done :)
  • RamasterRamaster Member Posts: 18
    Maxbuu said:

    I got a way to bug the game and toggle the tab. Hold the TAB and then press the windows button, release the tab and go back to the game. Done :)

    This happened to me by accident.

    I am Ramaster and I approve of this solution!

  • PantalionPantalion Member Posts: 2,137
    I remember original BG. I remember mousing over literally every square pixel.

    I do not miss it.

    Tab forever!
Sign In or Register to comment.