home *** CD-ROM | disk | FTP | other *** search
- /*
- ** $VER: Menu_WinsToFull.edge 1.0 (Friday 22-Oct-93 12:55:22)
- **
- ** Display all windows at their full size
- **
- ** Written by Thomas liljetoft & Inovatronics
- */
-
- options results
-
- /* get some general info */
- firstname = address()
- getenvvar _ge_barheight
- bar = result
- getenvvar _ge_visualscreenheight
- h = result - bar
- getenvvar _ge_visualscreenwidth
- w = result
-
- /* loop thru the windows */
- do forever
-
- 'window max'
-
- 'addressof nextwindow'
- newname = result
-
- address value newname
- if newname == firstname then do
- 'window front'
- leave
- end
- end
-
- exit(0)
-