home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / EDGE1_704.DMS / in.adf / Edge_Rexx.lha / ToggleWordWrap.edge < prev    next >
Encoding:
Text File  |  1993-10-27  |  340 b   |  23 lines

  1.  
  2. /*
  3. ** $VER: ToggleWordWrap.edge 1.1 (Sunday 08-Aug-93 02:54:21)
  4. **
  5. ** Script to toggle the WORDWRAP flag. (can easily be changed to any other
  6. ** flag.)
  7. **
  8. ** Written by Thomas liljetoft
  9. */
  10.  
  11. options results
  12.  
  13. 'flag' _fe_flags wordwrap t
  14. if result == 'Set' then
  15.     'windowtitle' '"WordWrap OFF"'
  16. else
  17.     'windowtitle' '"WordWrap ON"'
  18.  
  19. exit(0)
  20.  
  21.  
  22.  
  23.