home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 626a.lha / Textra_v1.12 / Scripts / Hello.textra < prev    next >
Text File  |  1991-10-24  |  2KB  |  43 lines

  1.     /*******************************************************************
  2.      * TEXTRA AREXX script -- Mike Haas, 1991, All Rights Reserved.    *
  3.      * Freely distributable ONLY as a component of the TEXTRA package. *
  4.      * This banner may not be removed or altered (improvements to the  *
  5.      * actual program welcome).  Please document and send to me.       *
  6.      *******************************************************************/
  7.  
  8. options results
  9.  
  10. /* temporarily make sure auto indent is off */
  11. prefs autoindent read; autoistate = result
  12. prefs autoindent off
  13.  
  14. clear
  15. newline
  16. textn '"                         Hello"'
  17. waitfor 2.0
  18. newline
  19. textn '"       This is a sample TEXTRA AREXX script, useful to"'
  20. textn '"         illustrate how such programs are executed."'
  21. waitfor 4.0
  22. newline
  23. textn '"     Other TEXTRA scripts are executed just like this one."'
  24. textn '"       Some even take additional or optional parameters."'
  25. waitfor 4.0
  26. newline
  27. textn '"     For example, the WRAPAT script is used for paragraph"'
  28. textn '"      formatting, and accepts the column number which is"'
  29. textn '"           to be considered the right margin."'
  30. waitfor 4.0
  31. newline
  32. textn '"     To further familiarize yourself with TEXTRA and its"'
  33. textn '"     AREXX scripts...1) Read the RexxCommand.doc file,"'
  34. textn '"     2) read each script into TEXTRA; the 1st few lines"'
  35. textn '"     of each file contain a description, 3). EXPERIMENT!"'
  36. newline
  37. waitfor 2.0
  38. textn '"                        THE END"'
  39.  
  40. /* restore autoindent */
  41. prefs autoindent autoistate
  42.  
  43.