Results 1 to 9 of 9

Hybrid View

  1. #1
    Player Aysha's Avatar
    Join Date
    Aug 2014
    Posts
    405
    Character
    Aysha
    World
    Sylph
    Main Class
    WAR Lv 99
    Quote Originally Posted by Nyarlko View Post
    Unfortunately, I don't think that would work, as the non-modified number keys are needed for typing.
    I suppose you could do Shift+ unless the game is wholly unable to differentiate whether or not you are typing... like... If the text input box has focus, do not pop the macro bar when shift is pressed.

    But yeah, if not, then it would be impossible to use shift+ for macros.
    (0)

  2. #2
    Player
    Join Date
    Nov 2015
    Posts
    1,552
    Quote Originally Posted by Aysha View Post
    I suppose you could do Shift+ unless the game is wholly unable to differentiate whether or not you are typing... like... If the text input box has focus, do not pop the macro bar when shift is pressed.

    But yeah, if not, then it would be impossible to use shift+ for macros.
    Shift+1 = !
    Would still be needed for typing. Maybe Ctrl+Alt+key would work? Just don't hit F4. lol
    (0)
    “That is not dead which can eternal lie, And with strange aeons even death may die.”

  3. #3
    Player Aysha's Avatar
    Join Date
    Aug 2014
    Posts
    405
    Character
    Aysha
    World
    Sylph
    Main Class
    WAR Lv 99
    Quote Originally Posted by Nyarlko View Post
    Shift+1 = !
    Would still be needed for typing. Maybe Ctrl+Alt+key would work? Just don't hit F4. lol
    When do you ever need a ! if you're not typing?

    Basically... while holding shift, the game does this:

    if(TextboxHasFocus=false) //*If the cursor is not actually in the text box
    {
    DoLockTextInput(); //*prevent the text box from receiving input
    DoShiftMacroDisplay(); //*display the macro bar so the user can select a macro
    }
    (0)