home *** CD-ROM | disk | FTP | other *** search
/ Set of Apple II Hard Drive Images / hard.hdv / HARD / DATATERM / DL.KEY.H < prev    next >
Encoding:
Text File  |  1988-05-28  |  17.6 KB  |  422 lines  |  [04] ASCII Text (0x0000)

  1. # start
  2. display ^L
  3. gotoxy 15,2
  4. display "More HELP is available on the following ^[^OA^N^X commands:"
  5. gotoxy 7,4
  6. display "^[^OA^N^X-A  Attention / Break Signal"
  7. gotoxy 7,5
  8. display "^[^OA^N^X-B  Change baud rate"
  9. gotoxy 7,6
  10. display "^[^OA^N^X-C  Clear recording buffer"
  11. gotoxy 7,7
  12. display "^[^OA^N^X-D  Show disk directory"
  13. gotoxy 7,8
  14. display "^[^OA^N^X-E  Change Duplex (Full/Half/Chat)"
  15. gotoxy 7,9
  16. display "^[^OA^N^X-H  Hang up phone"
  17. gotoxy 7,10
  18. display "^[^OA^N^X-I  Initialize DataTerm"
  19. gotoxy 7,11
  20. display "^[^OA^N^X-J  Display a file to screen"
  21. gotoxy 7,12
  22. display "^[^OA^N^X-K  Delete a file"
  23. gotoxy 7,13
  24. display "^[^OA^N^X-L  List the recording buffer"
  25. gotoxy 7,14
  26. display "^[^OA^N^X-M  Manual Settings"
  27. gotoxy 45,4
  28. display "^[^OA^N^X-N  Change to New Directory"
  29. gotoxy 45,5
  30. display "^[^OA^N^X-O  Toggle Online Printing"
  31. gotoxy 45,6
  32. display "^[^OA^N^X-P  Print current screen" 
  33. gotoxy 45,7
  34. display "^[^OA^N^X-Q  Quit DataTerm" 
  35. gotoxy 45,8
  36. display "^[^OA^N^X-R  Recording buffer on/off" 
  37. gotoxy 45,9
  38. display "^[^OA^N^X-S  Save buffer to disk"
  39. gotoxy 45,10
  40. display "^[^OA^N^X-T  Transfer a file"   
  41. gotoxy 45,11
  42. display "^[^OA^N^X-V  Volumes online display" 
  43. gotoxy 45,12
  44. display "^[^OA^N^X-W  Write buffer to named file" 
  45. gotoxy 45,13
  46. display "^[^OA^N^X-X  Execute a command file"
  47. gotoxy 45,14
  48. display "^[^OA^N^X-Z  Zoom - show control chars" 
  49.  
  50. gotoxy 1,18
  51. display "Press letter key for more info. on that letter's ^[^OA^N^X command.  Press esc to quit"
  52. gotoxy 1,19
  53. display "ie: Press `A` for ^[^OA^N^X-A Attention / Break, `B` for ^[^OA^N^X-B Change Baud rate, etc.
  54. gotoxy 24,22
  55. display "Press a Key -->^G"
  56.  
  57. # wait
  58. set timer 30
  59. waitfor keyboard
  60. if keyboard ^[ goto exit
  61. display ^G
  62. if failed goto wait
  63. gotoxy 12,22
  64. display "^O    Please wait;   loading information from disk....   ^N"
  65. If keyboard A goto "attention"
  66. If keyboard b goto "baud rate"
  67. if keyboard c goto "clear buffer"
  68. if keyboard d goto "disk dir"
  69. if keyboard e goto "duplex"
  70. if keyboard h goto "hang up"
  71. if keyboard i goto "initialize"
  72. if keyboard j goto "view file"
  73. if keyboard k goto "delete file"
  74. if keyboard l goto "list buffer"
  75. if keyboard m goto "manual settings"
  76. if keyboard n goto "new dir"
  77. if keyboard o goto "online printing"
  78. if keyboard p goto "print screen"
  79. if keyboard q goto "quit"
  80. if keyboard r goto "record buffer"
  81. if keyboard s goto "save buffer"
  82. if keyboard t goto "transfer file"
  83. if keyboard v goto "volumes online"
  84. if keyboard w goto "write buffer"
  85. if keyboard x goto "execute cmd file"
  86. if keyboard z goto "zoom"
  87.  
  88. # abort
  89. gotoxy 12,22
  90. display "^O Please press a key to continue help, or <esc> to quit.^N"
  91. set timer 20
  92. waitfor keyboard
  93. if keyboard ^[ goto exit
  94. if failed goto abort
  95. goto start
  96. stop
  97.  
  98. # exit
  99. display ^L
  100. gotoxy 20,7
  101. display "^O   Returning you to DataTerm (tm)^N^Y"
  102. pause 3
  103. display ^L
  104. stop
  105.  
  106. # "Attention"
  107. display ^L
  108. gotoxy 24,2
  109. display "^[^OA^N^X-A  Attention / Break Signal^J^J^M"
  110. display "^I    This command will send a signal to the host computer to^J^M"
  111. display "^Itry and get its attention (stop what it is currently doing).^J^M"
  112. goto abort
  113.  
  114. # "Baud Rate"
  115. display ^L
  116. gotoxy 27,2
  117. display "^[^OA^N^X-B  Change Baud Rate^J^J^M"
  118. display "^I    This command changes the baud rate setting between 300,^J^M"
  119. display "^I1200 and 2400 (2400 baud supported only with a DataLink 2400).^J^J^M"
  120. display "^IThe baud rate is the speed that the computer sends data^J^M"
  121. display "^Ithrough the phone lines to the computer or Bulletin board you^J^M" 
  122. display "^Iare calling.  Most computer services offer connection at 300^J^M"
  123. display "^Iand 1200 baud.  Many are now supporting 2400 baud as well.^J^M"
  124. display "^I    You will generally want to download files at your highest^J^M"
  125. display "^Ibaud rate as this can be 4 to 8 times faster than 300 baud.^J^J^M"
  126. display "^INote: as many commercial services charge more per hour at the^J^M"
  127. display "^Ihigher speed (usually twice the amount) you may want to call^J^M"
  128. display "^Ifirst at 300 baud.^J^J^M"
  129. goto abort
  130.  
  131. # "Clear Buffer"
  132. display ^L
  133. gotoxy 28,2
  134. display "^[^OA^N^X-C  Clear Buffer^J^J^M"
  135. display "^I    This command will erase the contents of the recording^J^M"
  136. display "^Ibuffer.  There is no way to undo this command so make sure^J^M"
  137. display "^Iyou really want to clear the buffer before using this command.^J^J^M
  138. display "^I    You will usually want to clear the buffer before doing an^J^M" 
  139. display "^IASCII (text) file transfer to prevent recording any additional^J^M"
  140. display "^Idata that may mess up your file.^J^J^M"
  141. display "^I    You can see how full the buffer is by getting by looking^J^M"
  142. display "^Iat the `Buffer 0%` display on the status line.^J^J^M" 
  143. goto abort
  144.  
  145. # "Disk Dir"
  146. display ^L
  147. gotoxy 27,2
  148. display "^[^OA^N^X-D  Show Directory^J^J^M"
  149. display "^I    This command will display the currently set ProDOS path^J^M"
  150. display "^Iand will prompt for the directory you wish to list.  Pressing^J^M"
  151. display "^Ireturn will list the files in the currently set directory.^J^J^M"
  152. goto abort
  153.  
  154. # "Duplex"
  155. display ^L
  156. gotoxy 21,2
  157. display "^[^OA^N^X-E  Change Duplex (Full/Half/Chat)^J^J^M"
  158. display "^I    This command toggles between Full, Half, and Chat-Duplex.^J^M"
  159. display "^J^I    ^OFull-Duplex^N means your computer sends your keypresses to^J^M"
  160. display "^Ithe host computer which then echos them back to you.  If every^J^M"
  161. display "^Ikey is being displayed twice you will need to change to Full-Duplex.^J^M"
  162. display "^ICompuServe is an example of a service that uses Full-Duplex.^J^J^M"
  163. display "^I    ^OHalf-Duplex^N means your computer sends your keypresses both^J^M"
  164. display "^Ito your video display and to the host computer.  If you are^J^M"
  165. display "^Iconnected to a remote computer and cannot see what you are^J^M"
  166. display "^Ityping on the screen, you need to change to Half-Duplex.^J^J^M"
  167. display "^I    ^OChat-Duplex^N is generally used when you are calling another^J^M"
  168. display "^Icomputer.  When you are in Chat mode pressing the <return> key^J^M"
  169. display "^Iwill generate both a carrige return and a linefeed.^J^J^M"
  170. goto abort
  171.  
  172. # "Hang Up"
  173. display ^L
  174. gotoxy 28,2
  175. display "^[^OA^N^X-H  Hang Up Phone^J^J^M"
  176. display "^I    This command will send a command to the DataLink to hang^J^M"
  177. display "^Iup (disconnect) the phone.^J^J^M"  
  178. display "^I    You will be prompted as to whether or not you really want^J^M"
  179. display "^Ito hang up the phone.  Pressing `Y` will hang up the phone,^J^M"
  180. display "^Iany other key will return you to terminal mode.^J^J^M"
  181. display "^I    Note, DataTerm does not drop carrier when you quit using^J^M"
  182. display "^Ithe 'E' option.^J^J^M"
  183. display "^IThis means you can quit DataTerm, run another program, then^J^M"
  184. display "^Irun DataTerm (or OnLine 64) while staying logged on to a BBS.^J^J^M"
  185. goto abort
  186.  
  187. # "initialize"
  188. display ^L
  189. gotoxy 28,2
  190. display "^[^OA^N^X-I  Initialize DataTerm^J^J^M"
  191. display "^I    This command acts similar to pressing Control-Reset but^J^M"
  192. display "^Iwithout dropping carrier.^J^J^M"
  193. display "^I    This is useful if line noise causes your screen to go in^J^M"
  194. display "^Ito inverse mode, or if your 80 column display gets turned off^J^M"
  195. display "^I(which could happen under terminal emulation mode).^J^J^M"
  196. display "^I     The initialize command will re-set the proper screen mode^J^M"
  197. display "^Iand will leave you at the opening DataTerm prompt.  It will^J^M"
  198. display "^Inot re-read your DL.STARTUP, DL.MACROS, or DL.CONFIG files.^J^M"
  199. goto abort
  200.  
  201.  
  202. # "View File"
  203. display ^L
  204. gotoxy 25,2
  205. display "^[^OA^N^X-J  Display File to Screen^J^J^M"
  206. display "^I    This command will allow you to display a TEXT file to the^J^M"
  207. display "^Iscreen.  Any standard text file (such as this help file) will^J^M"
  208. display "^Ibe displayed with any formatting it originally had.^J^J^M"
  209. display "^I    AppleWorks Word Processing files will be displayed, but^J^M"
  210. display "^Iwill not be formatted as they are in AppleWorks as AppleWorks^J^M"
  211. display "^Idoes not use standard text files.^J^J^M"
  212. display "^I    If you would like a printout of a TEXT file.  Turn on the^J^M"
  213. display "^Ionline printing function (^[^OA^N^X-O) before using the ^[^OA^N^X-J command^J^M"
  214. display "^Ito view the TEXT file.^J^J^M"
  215. goto abort
  216.  
  217. # "Delete File"
  218. display ^L
  219. gotoxy 28,2
  220. display "^[^OA^N^X-K  Delete A File^J^J^M"
  221. display "^I    This command will allow you to delete a file from disk.^J^M"
  222. display "^IYou will be prompted for the ProDOS Pathname of the file you^J^M"
  223. display "^Iwish to delete.^J^J^M"
  224. display "^I    You can change the ProDOS Prefix by using the ^[^OA^N^X-N command,^J^M"
  225. display "^Ior list the contents of the current dir. with the ^[^OA^N^X-D command.^J^J^M"
  226. display "^I    This will not delete a file that is locked (that's what^J^M"
  227. display "^Ilock is for!).  You will need to unlock the file with a ProDOS^J^M"
  228. display "^Ifile utiltity program such as `FILER` before deleting it.^J^J^M"
  229. goto abort
  230.  
  231. # "List Buffer"
  232. display ^L
  233. gotoxy 24,2
  234. display "^[^OA^N^X-L  List the Recording Buffer^J^J^M"
  235. display "^I    This command will display the contents of the Recording^J^M"
  236. display "^IBuffer to the screen.  You can use this to check the buffer to^J^M"
  237. display "^Isee if you want to save it to disk. The file will be displayed^J^M"
  238. display "^Ione screen at a time.  Pressing space will advance the display^J^M"
  239. display "^Ito the next page of information in the buffer.  Pressing the^J^M"
  240. display "^I<esc> key will return you to terminal mode.^J^J^M"
  241. display "^I    The recording buffer is approximatly 47k in a 128k (or^J^M"
  242. display "^Ilarger) Apple //e or Apple IIgs.^J^M"
  243. goto abort
  244.  
  245. # "Manual Settings"
  246. display ^L
  247. gotoxy 28,2
  248. display "^[^OA^N^X-M  Manual Settings^J^J^M"
  249. display "^IThis command allows you to change some of the system settings.^J^M"
  250. display "^I[1] Root Directory - This is where DataTerm will look for its^J^M"
  251. display "^I    MACRO files and where it will save the recording buffer.^J^M"
  252. display "^I[2] Autosave file - This is the name the recording buffer will^J^M"
  253. display "^I    be given when it is saved (you can specify a complete pathname).^J^M"
  254. display "^I[3] Buffer - When set to `Auto` the host computer can turn your^J^M"
  255. display "^I    buffer off and on as needed.  When set to `Manual` DataLinker^J^M"
  256. display "^I    will ignore buffer off/on commands from the host computer.^J^M"
  257. display "^I[4] Append - When set to `True`, the buffer will be saved as one^J^M"
  258. display "^I    large file.  When set to `False`, the buffer will be saved in^J^M"
  259. display "^I    buffer sized files named (default) DLTEMP.1,DLTEMP.2, etc.^J^M"
  260. display "^I[5] Debug - True = macro echo on. False = macro echo off.^J^M"
  261. display "^I[6] Printer Init - This is the setup string for your printer card.^J^M"
  262. display "^I[7] DataLink Slot - The slot your DataLink Modem was found in.^J^M"
  263. display "^I[8] Data Format - The currently set Start/Stop Bits and Parity.^J^M" 
  264. display "^I[9] Terminal - Which terminal you are emulating (if any).^J^M"
  265. display "^I[0] Time Constant - Variable for macro PAUSE & SET TIMER commands.^M" 
  266. goto abort
  267.  
  268. # "New Dir"
  269. display ^L
  270. gotoxy 27,2
  271. display "^[^OA^N^X-N  Set New Directory^J^J^M"
  272. display "^I    This command lets you set the ProDOS Prefix your files^J^M"
  273. display "^Iwill be downloaded to.  e.g., if you are using a hard disk you^J^M"
  274. display "^Imay want to set the prefix to `/HARD1/DL/DOWNLOADS` to save your^J^M"
  275. display "^Idownloaded files.^J^J^M"
  276. display "^I    Note that this does not change the root directory setting,^J^M"
  277. display "^Iwhich is the directory the buffer is saved to, and where DL^J^M"
  278. display "^Ilooks for its macro files (see ^[^OA^N^X-M command for more information).^J^J^M"
  279. goto abort
  280.  
  281. # "Online Printing"
  282. display ^L
  283. gotoxy 24,2
  284. display "^[^OA^N^X-O  Toggle Online Printing^J^J^M"
  285. display "^I    This command turns on your slot 1 printer so that every-^J^M"
  286. display "^Ithing that comes from the host computer will be printed.^J^J^M"
  287. display "^I    When the Online printing function has been turned on, a^J^M"
  288. display "^I'[P]' will appear toward the middle of the status line.^J^J^M" 
  289. display "^I    This feature works with all printer interface cards that^J^M"
  290. display "^Iadhere to the Apple Pascal 1.1 Guidelines for printer cards.^J^M"
  291. display "^IThis includes the Apple IIgs printer port, Super Serial Card,^J^M"
  292. display "^IAE's Serial Pro, AE's Parallel Pro, GraphiCard, etc.^J^J^M"
  293. display "^I    If you are having problems printing make sure your printer^J^M"
  294. display "^Iis plugged into slot 1 and turned on.  You may also need to^J^M"
  295. display "^Ichange the printer initialization string using the ^[^OA^N^X-M command. ^J^J^M"
  296. display "^I    Please refer to your printer interface card manual for the^J^M"
  297. display "^Icorrect initialization string for your card.^J^M"
  298. goto abort
  299.  
  300. # "Print Screen"
  301. display ^L
  302. gotoxy 25,2
  303. display "^[^OA^N^X-P  Print Current Screen^J^J^M"
  304. display "^I    This command will print a copy of the data that is^J^M"
  305. display "^Icurrently being displayed on your screen.  It is similar to^J^M"
  306. display "^Ithe ^[^OA^N^X-H command in AppleWorks.^J^J^M"
  307. display "^I    It will not print the status line that appears at the^J^M"
  308. display "^Itop of the screen.^J^J^M"
  309. display "^IThis command can also be executed from within a macro, but^J^M"
  310. display "^Icannot be executed while a macro is running.^J^M"
  311.  
  312. goto abort
  313.  
  314. # "Quit"
  315. display ^L
  316. gotoxy 28,2
  317. display "^[^OA^N^X-Q  Quit DataTerm^J^J^M"
  318. display "^I    This command will ask you if you really want to QUIT the^J^M"
  319. display "^IDataTerm program.^J^M"
  320. display "^IYou will get three choices when you press ^[^OA^N^X-Q.  They are:^J^J^M"
  321. display "^M^I^I^I^HQ      Quit and disable port^J^M"
  322. display "^I^I^I^HE      Exit with port active^J^M"
  323. display "^I^I^I^HESC    Return to DataTerm^J^M" 
  324. display "^I^I  (port refers to your DataLink modem)^J^J^M"
  325. display "^IWhen you Quit DataTerm, it will check to see if there is^J^M"
  326. display "^Ianything in the recording buffer.  If there is, DataTerm will^J^M"
  327. display "^Isave the contents of the buffer using the default filename^J^M"
  328. display "^Ifound using the ^[^OA^N^X-M command.^J^J^M"
  329. display "^I    Note, DataTerm does not drop carrier when you quit using^J^M"
  330. display "^Ithe 'E' option.  This means you can quit DataTerm, run another^J^M"
  331. display "^Iprogram, then run DataTerm (or OnLine 64) again while staying^J^M"
  332. display "^Iconnected to a Bulletion Board.^J^M"
  333. goto abort
  334.  
  335. # "Record Buffer"
  336. display ^L
  337. gotoxy 25,2
  338. display "^[^OA^N^X-R  Toggle Recording Buffer^J^J^M"
  339. display "^I    This command toggles the recording buffer off & on. When^J^M"
  340. display "^Ithe buffer is on a [R] will appear on the status line next^J^M"
  341. display "^Ito the word `Buffer`.^J^J^M"
  342. display "^I    The recording buffer will hold approximatly 47k in a 128k^J^M"
  343. display "^I(or larger) Apple //e or IIgs.^J^J^M"
  344. display "^I    You can see how full the buffer is by looking at the `%`^J^M"
  345. display "^Iindicator next to the word `Buffer` on the status line, the^J^M"
  346. display "^I`%` shows the percentage of the buffer that is filled.^J^J^M"
  347. display "^I    The buffer will be automatically saved when it becomes full ^J^M"
  348. display "^IIt will be saved with the name set under the ^[^OA^N^X-M menu.^J^M^J"
  349. goto abort
  350.  
  351. # "Save Buffer"
  352. display ^L
  353. gotoxy 24,2
  354. display "^[^OA^N^X-S  Save Recording Buffer^J^J^M"
  355. display "^I    This command will force a save of the contents of the^J^M"
  356. display "^Irecording buffer to the file and ProDOS path as named in the^J^M"
  357. display "^I^[^OA^N^X-M menu (default: DLTEMP.1, DLTEMP.2, etc.).^J^J^M"
  358. display "^I    The buffer is automatically saved when it becomes completely^J^M"
  359. display "^Ifilled.  After the buffer is saved it is cleared.^J^J^M"
  360. goto abort
  361.  
  362. # "Transfer File"
  363. display ^L
  364. gotoxy 26,2
  365. display "^[^OA^N^X-T  Transfer A File^J^J^M"
  366. display "^I    This command prepares DataTerm to [S]end or [R]eceive^J^M"
  367. display "^Ia file from another computer.^J^J^M"
  368. display "^I^IThe following send options are supported:^J^M"
  369. display "^I^IXmodem,^IYmodem,^I4modem,^IProDOS,^IText ^J^J^M"
  370. display "^I^IThe following receive options are supported:^J^M"
  371. display "^I^IXmodem,^IYmodem,^I4modem,^IProDOS,^IText^J^M"
  372. display "^I^Iand Automatic unpacking of Binary II files.^J^J^M"
  373. display "^IDataTerm also supports the extended CRC error checking^J^M"
  374. display "^Iprotocals for sending and receiving of files (when available).^J^J^M"
  375. goto abort
  376.  
  377. # "Volumes Online"
  378. display ^L
  379. gotoxy 26,2
  380. display "^[^OA^N^X-V  List Volumes Online^J^J^M"
  381. display "^I    This command will display a list of the ProDOS volumes^J^M"
  382. display "^Iand slot and drive numbers of all ProDOS disks currently online.^J^J^M"
  383. goto abort
  384.  
  385. # "Write Buffer"
  386. display ^L
  387. gotoxy 24,2
  388. display "^[^OA^N^X-W  Write Buffer To A File^J^J^M"
  389. display "^I    This command will let you save the buffer with a file-^J^M"
  390. display "^Iname other than the one set under the ^[^OA^N^X-M menu.^J^J^M"
  391. goto abort
  392.  
  393. # "Execute CMD File"
  394. display ^L
  395. gotoxy 24,2
  396. display "^[^OA^N^X-X  Execute A Command File^J^J^M"
  397. display "^I    Command files are the same thing as (^[^O@^N^X) MACRO files.^J^M"
  398. display "^IThey are simply macro files that are not assigned to a ^[^O@^N^X key.^J^J^M"
  399. display "^IUsing a command file, you can log on to a BBS, then, depending^J^M"
  400. display "^Ion what BBS you are calling, you could have a command file to^J^M"
  401. display "^Iread messages or to download or upload a file(s), etc.^J^J^M"
  402. display "^I    This HELP file is one example of the capabilities of a^J^M"
  403. display "^Icomplex macro file.^J^J^M"
  404. display "^IPlease refer to the DataLink Communications Manual for details^J^M"
  405. display "^Ion how to create command (macro) files.^J^M"
  406. goto abort
  407.  
  408. # "Zoom"
  409. display ^L
  410. gotoxy 23,2
  411. display "^[^OA^N^X-Z  Zoom - Show Control Chars^J^J^M"
  412. display "^I    When this command is turned on, (a [Z] will display^J^M"
  413. display "^Ion the status line) all control characters sent by the^J^M"
  414. display "^Ihost computer will be displayed as inverse characters.^J^J^M"
  415. display "^I    Many mainframe computers will begin each line with a^J^M"
  416. display "^ICONTROL-Q, this will show as `^OQ^N` at the start of each line.^J^M"
  417. goto abort
  418. stop
  419.  
  420. # - all macros written by Dale Therio
  421. # - DataTerm Help Macro version 2.01
  422. # - June 28th, 1988