home *** CD-ROM | disk | FTP | other *** search
/ Loadstar 128 26 / q26.d81 / t.keyboard < prev    next >
Text File  |  2022-08-28  |  5KB  |  133 lines

  1.  
  2.  
  3. Keyboard Equivalents
  4. --------------------
  5.  
  6. The Commodore keyboard does not have a key for certain Ascii characters.
  7. These codes can be generated by typing:
  8.  
  9. ALT :  generates chr$(123) left brace {SHIFT-+}
  10. ALT ;                 125  right brace {SHIFT--}
  11. ALT '                 96   tilde {SHIFT-*}
  12. HOME                  124  concatenation symbol {CBM--}
  13. CLR                   126  sigma {$de}
  14. SHIFT-                95   underscore {CBM-*}
  15. BACK ARROW            8    backspace
  16. DEL                   127  true Ascii delete
  17. HELP                  generates a "BREAK" (see "Terminal Mode")
  18.  
  19. The underscore (usually the back arrow on C128) was redefined to be shift
  20. minus, the normal place for it on Ascii keyboards.  This also frees up the
  21. back arrow to be used as a backspace key.  BBS's usually recognize either
  22. DELETE or BACKSPACE.  If you press "DEL" and it doesn't work, try the
  23. BACKSPACE key.  The keyboard was set up this way because mainframes require
  24. both DELETE and BACKSPACE (they are not the same).
  25.  
  26. Also note that the Commodore Keypad has a "+" key but not a "," key.  When
  27. the emulation keypad is turned on the "+" key behaves like the missing ","
  28. key.
  29.  
  30.  
  31. USER INPUT
  32. ----------
  33.  
  34. At times you will be asked for input.  There are two modes of input,
  35. PetAscii and Ascii.  There are differences between the two.  Most inputs
  36. are PetAscii, which have a solid input line.  Ascii inputs have a dashed
  37. line.  This line shows the maximum number of characters that you may enter.
  38. Input lines are editable!  You can use the arrow left/right keys to "slide"
  39. over any characters that you have already entered.  This is useful for
  40. correcting typos without having to re-type an entire line.  You can press
  41. CRSR DOWN to move to the end of the current input line.
  42.  
  43. Input commands are as follows:
  44.  
  45.  
  46. For PetAscii Inputs
  47. -------------------
  48.  
  49. The keyboard is a standard C128 keyboard.  All alphanumeric characters can
  50. be entered, except the quote characters are entered in "overstrike" mode.
  51. What you type replaces what was there.
  52.  
  53. DEL deletes 1 character to the left
  54.  
  55. ARROW LEFT/RIGHT & CURSOR LEFT/RIGHT can be used to "slide" the cursor over
  56. characters already entered
  57.  
  58. ARROW or CURSOR DOWN moves to the end of the input line.
  59.  
  60. INST inserts one space (ignored if the input line is full) for C/G logon
  61. macros only.  This will recall the previous macro (if one existed and it
  62. was a C/G macro)
  63.  
  64. RETURN or ENTER ends the input
  65.  
  66. ESCape aborts the input
  67.  
  68.  
  69. For Ascii Inputs
  70. ----------------
  71.  
  72. The keyboard is an Ascii keyboard.
  73.  
  74. ALL characters can be entered, including control characters.  To enter a
  75. code that cannot be typed from the keyboard, type CTRL-ENTER.  Enter a code
  76. from 0-255 and press RETURN.
  77.  
  78. Characters are entered in "Insert" mode.  When you type a character
  79. everything is pushed to the left.  If the line is full typed characters are
  80. ignored.
  81.  
  82. DEL deletes 1 character to the left
  83.  
  84. ARROW LEFT/RIGHT can be used to "slide" the cursor over characters.  Cursor
  85. left and right do not work for Ascii input.
  86.  
  87. In Ascii mode, you can enter a DELETE or ESCAPE (even LEFT/RIGHT ARROW) by
  88. pressing CTRL with the key.  i.e. CTRL-DEL puts a character 127 on the
  89. line, CTRL-ESCAPE puts a character 27 on the line.
  90.  
  91. CTRL-KEYPAD MINUS is used to recall Ascii logon macros, search/replace
  92. strings in the buffer editor, and buffer macros.
  93.  
  94. ENTER ends the input
  95.  
  96. ESCape aborts the input
  97.  
  98. For most functions, ending the input with a blank line will abort the
  99. function.  For logon macros, buffer macros, and buffer search/replace
  100. strings, a blank input will clear (erase) the previous string.  If you want
  101. to abort the input, yet retain the previous string, press ESCAPE.  ESCAPE
  102. can be pressed at any time for a "full" abort.
  103.  
  104. When entering characters on an input line do not space over the input line
  105. provided just to clear the line.  When you end the input the line is erased
  106. automatically.  The line is there only as a guide for input length.
  107.  
  108. PetAscii inputs are stored and can later be recalled with the quote key.
  109. For example...  you enter "fille" at the load prompt in the buffer menu but
  110. get a file not found error because you meant to type "file"  (1 "l").  Re-
  111. select the load option, then press the quote to recall your previous input.
  112. Then edit the line.  Inputs on directory and DOS command lines are not
  113. saved.
  114.  
  115.  
  116. You can enter any of 8 different menus directly by pressing one of the
  117. function keys while the highlight bar is visible.  The keys work as
  118. follows:
  119.  
  120.    F1 - Terminal Options        F2 - Download a File
  121.    F3 - Phone Directory         F4 - Upload a file
  122.    F5 - Disk Functions          F6 - Display Parameters
  123.    F7 - Buffer Utility          F8 - Receive a Call
  124.  
  125. For example, you are in the buffer utility menu and you want to go to disk
  126. functions.  While the highlight bar is visible press F5.  The function
  127. keys
  128. have this function in all menus except the phone directory or wherever else
  129. noted where they have different functions.  You can use F3 to get to the
  130. phone directory, but you must use the ESCAPE key to exit that area.
  131.  
  132.  
  133.