home *** CD-ROM | disk | FTP | other *** search
-
- /*
- ** $VER: ToggleWordWrap.edge 1.1 (Sunday 08-Aug-93 02:54:21)
- **
- ** Script to toggle the WORDWRAP flag. (can easily be changed to any other
- ** flag.)
- **
- ** Written by Thomas liljetoft
- */
-
- options results
-
- 'flag' _fe_flags wordwrap t
- if result == 'Set' then
- 'windowtitle' '"WordWrap OFF"'
- else
- 'windowtitle' '"WordWrap ON"'
-
- exit(0)
-
-
-
-