home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / dirs / disterm_462.lzh / DisTerm / RxTermScripts / dismenu1 < prev    next >
Text File  |  1991-03-08  |  751b  |  19 lines

  1. /* An example of a disterm DISMENU command.                    */
  2. /* It takes at least 2 args, the menu # and item #. For example, the QUIT menu    */
  3. /* item is in menu #0 (Project), and is the 5th item (always count from 0)    */
  4. /* so here's the line that would QUIT disTerm:                    */
  5. /*  'MENU' 0 5                                    */
  6. /* Certain MENU items (such as "Baud Rate") may take additional args        */
  7.  
  8. /* Here's how I begin all of my rexx scripts meant to control disTerm */
  9. ADDRESS 'disTerm'  /* All the following commands go to disTerm */
  10. OPTIONS FAILAT 20
  11. OPTIONS RESULTS
  12. quote = '27'X   /* use this variable name in place of any ' char within a string */
  13.  
  14. /* Bring disTerm window to the front */
  15.  'DISWIND'
  16.  
  17. /* Let's toggle the Split Window item. (Menu #1, item #3) */
  18.  'DISMENU' 1 3
  19.