• Right and left arrows

    From Frozen Fire@VERT/IMATRIX to All on Friday, June 28, 2002 19:45:00
    Anyone know the command keys for the right and left arrows?

    Appreciated :)

    FF
    The Impact Matrix impactmatrix.dhs.org

    ---
    þ Synchronet þ The Impact Matrix - impactmatrix.dhs.org CALL TODAY!
  • From Knightmare@VERT/RIVERNET to Frozen Fire on Friday, June 28, 2002 20:37:00
    RE: Right and left arrows
    BY: Frozen Fire to All on Fri Jun 28 2002 07:45 pm

    OTE: IceEdit 2.35 L20705
    Anyone know the command keys for the right and left arrows?
    -+-
    Command keys??


    ---
    þ Synchronet þ StarKnight BBS - Billings, MT USA - telnet://bbs.rivernet.cc
  • From Digital Man@VERT to Frozen Fire on Saturday, June 29, 2002 01:10:07
    Re: Right and left arrows
    By: Frozen Fire to All on Fri Jun 28 2002 06:45 pm

    Anyone know the command keys for the right and left arrows?

    Up arrow: ^^
    Down arrow: ^J
    Right arrow: ^F
    Left arrow: ^]
    Home: ^B
    End: ^E

    digital man

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ telnet://vert.synchro.net
  • From Tracker1@VERT/RDBBS to Frozen Fire on Saturday, June 29, 2002 01:00:00
    "Frozen Fire" <Frozen Fire@VERT> wrote in message...

    Anyone know the command keys for the right and left arrows?

    Appreciated :)


    Thought I sent you my menu.js file, it is in there.. :)

    var KEY_UP = String.fromCharCode(0x1e);
    var KEY_DOWN = String.fromCharCode(0x0a);
    var KEY_RIGHT = String.fromCharCode(0x06);
    var KEY_LEFT = String.fromCharCode(0x1d);
    var KEY_HOME = String.fromCharCode(0x02);
    var KEY_END = String.fromCharCode(0x05);
    var KEY_BACK = String.fromCharCode(0x08);
    var KEY_DEL = String.fromCharCode(0x7F);

    Note back/del are not reliably separate, an emulator will send either,
    one or the other... (ie, some emulators send del, when bs is pressed)

    best to have them both react the same if you use them, or at least have alternate keys. :) ...also, ctrl-z in 2k/xp's terminal will switch from
    ansi, to raw input, then pass the ctrl-z.. basically this toggles
    between escape sequences, and the actual keycodes.

    --
    =======================================================================
    Michael J. Ryan - tracker1[*at*]theroughnecks.com
    Roughneck BBS: http://www.theroughnecks.net telnet://theroughnecks.net =======================================================================
    Y!: aztracker1 - aim: azTracker1 - icq: 4935386 - msn: see email
    One program for aim/icq/yahoo/msn/irc - http://www.trillian.cc/

    ---
    þ Synchronet þ *QWK Origin: Roughneck BBS - theroughnecks.net
  • From Tracker1@VERT/RDBBS to Tracker1 on Saturday, June 29, 2002 01:07:00
    Sorry, baja sub.. my bad.. :>

    ^M and ^@

    not sure which is right and left (see noyesbar.src)


    note:
    ESC = String.fromCharCode(0x1b);

    --
    =======================================================================
    Michael J. Ryan - tracker1[*at*]theroughnecks.com
    Roughneck BBS: http://www.theroughnecks.net telnet://theroughnecks.net =======================================================================
    Y!: aztracker1 - aim: azTracker1 - icq: 4935386 - msn: see email
    One program for aim/icq/yahoo/msn/irc - http://www.trillian.cc/


    "Tracker1" <Tracker1@theroughnecks.net> wrote in message news:3D1CF880.188.BAJAPROG@theroughnecks.net...
    "Frozen Fire" <Frozen Fire@VERT> wrote in message...

    Anyone know the command keys for the right and left arrows?

    Appreciated :)


    Thought I sent you my menu.js file, it is in there.. :)

    var KEY_UP = String.fromCharCode(0x1e);
    var KEY_DOWN = String.fromCharCode(0x0a);
    var KEY_RIGHT = String.fromCharCode(0x06);
    var KEY_LEFT = String.fromCharCode(0x1d);
    var KEY_HOME = String.fromCharCode(0x02);
    var KEY_END = String.fromCharCode(0x05);
    var KEY_BACK = String.fromCharCode(0x08);
    var KEY_DEL = String.fromCharCode(0x7F);

    Note back/del are not reliably separate, an emulator will send either,
    one or the other... (ie, some emulators send del, when bs is pressed)

    best to have them both react the same if you use them, or at least have alternate keys. :) ...also, ctrl-z in 2k/xp's terminal will switch from ansi, to raw input, then pass the ctrl-z.. basically this toggles
    between escape sequences, and the actual keycodes.

    --
    ======================================================================= Michael J. Ryan - tracker1[*at*]theroughnecks.com
    Roughneck BBS: http://www.theroughnecks.net telnet://theroughnecks.net =======================================================================
    Y!: aztracker1 - aim: azTracker1 - icq: 4935386 - msn: see email
    One program for aim/icq/yahoo/msn/irc - http://www.trillian.cc/


    ---
    þ Synchronet þ *QWK Origin: Roughneck BBS - theroughnecks.net
  • From Frozen Fire@VERT/IMATRIX to Digital Man on Saturday, June 29, 2002 12:47:00
    Re: Right and left arrows
    By: Digital Man to Frozen Fire on Sat Jun 29 2002 01:10:00

    Re: Right and left arrows
    By: Frozen Fire to All on Fri Jun 28 2002 06:45 pm

    Anyone know the command keys for the right and left arrows?

    Up arrow: ^^
    Down arrow: ^J
    Right arrow: ^F
    Left arrow: ^]
    Home: ^B
    End: ^E

    digital man

    Thanks DM :)

    FF
    The Impact Matrix impactmatrix.dhs.org

    ---
    þ Synchronet þ The Impact Matrix - impactmatrix.dhs.org CALL TODAY!
  • From Frozen Fire@VERT/IMATRIX to Tracker1 on Saturday, June 29, 2002 12:51:00
    Re: Right and left arrows
    By: Tracker1 to Frozen Fire on Sat Jun 29 2002 01:00:00

    "Frozen Fire" <Frozen Fire@VERT> wrote in message...

    Anyone know the command keys for the right and left arrows?

    Appreciated :)


    Thought I sent you my menu.js file, it is in there.. :)

    var KEY_UP = String.fromCharCode(0x1e);
    var KEY_DOWN = String.fromCharCode(0x0a);
    var KEY_RIGHT = String.fromCharCode(0x06);
    var KEY_LEFT = String.fromCharCode(0x1d);
    var KEY_HOME = String.fromCharCode(0x02);
    var KEY_END = String.fromCharCode(0x05);
    var KEY_BACK = String.fromCharCode(0x08);
    var KEY_DEL = String.fromCharCode(0x7F);

    Note back/del are not reliably separate, an emulator will send either,
    one or the other... (ie, some emulators send del, when bs is pressed)

    best to have them both react the same if you use them, or at least have alternate keys. :) ...also, ctrl-z in 2k/xp's terminal will switch from ansi, to raw input, then pass the ctrl-z.. basically this toggles
    between escape sequences, and the actual keycodes.

    --
    ======================================================================= Michael J. Ryan - tracker1[*at*]theroughnecks.com
    Roughneck BBS: http://www.theroughnecks.net telnet://theroughnecks.net =======================================================================
    Y!: aztracker1 - aim: azTracker1 - icq: 4935386 - msn: see email
    One program for aim/icq/yahoo/msn/irc - http://www.trillian.cc/


    For the new lightbar shells, I have found things much faster and easier with Baja (as far as display, and user input). Tied in with my JS routines (userlist, node list, etc), things seem to be working well.

    I've been poking though your menu kit ;) Still not finished with my co sysop ctrl S menu.

    FF
    The Impact Matrix impactmatrix.dhs.org

    ---
    þ Synchronet þ The Impact Matrix - impactmatrix.dhs.org CALL TODAY!
  • From Digital Man@VERT to Frozen Fire on Monday, July 01, 2002 19:41:13
    Re: Right and left arrows
    By: Frozen Fire to Tracker1 on Sat Jun 29 2002 11:51 am

    I've been poking though your menu kit ;) Still not finished with my co sysop ctrl S menu.

    Ctrl-S can't be used as a command key, it's a standard terminal control code (XOFF) used to pause output. Ctrl-Q (XON) is used to un-pause output.

    digital man

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ telnet://vert.synchro.net
  • From Frozen Fire@VERT/IMATRIX to Digital Man on Wednesday, July 03, 2002 05:12:00
    Re: Right and left arrows
    By: Digital Man to Frozen Fire on Mon Jul 01 2002 19:41:00

    Re: Right and left arrows
    By: Frozen Fire to Tracker1 on Sat Jun 29 2002 11:51 am

    I've been poking though your menu kit ;) Still not finished with my co sy ctrl S menu.

    Ctrl-S can't be used as a command key, it's a standard terminal control code (XOFF) used to pause output. Ctrl-Q (XON) is used to un-pause output.

    digital man

    You just saved me a few hours of WTF?! :) Thankya.

    FF
    The Impact Matrix impactmatrix.dhs.org

    ---
    þ Synchronet þ The Impact Matrix - impactmatrix.dhs.org CALL TODAY!
  • From Digital Man@VERT to Frozen Fire on Wednesday, July 03, 2002 14:26:38
    Re: Right and left arrows
    By: Frozen Fire to Digital Man on Wed Jul 03 2002 04:12 am

    Ctrl-S can't be used as a command key, it's a standard terminal control c (XOFF) used to pause output. Ctrl-Q (XON) is used to un-pause output.

    You just saved me a few hours of WTF?! :) Thankya.

    No problemo.

    digital man

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ telnet://vert.synchro.net