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

  1. /* toggle zoom size */
  2.  
  3. options results
  4.  
  5. /* query window information and then parse the result */
  6. window
  7. parse var result ''X '' x '', Y '' y '', W '' w '', H '' h '', '' rexx '', '' status
  8.  
  9. /* if we are zoom then unzoom else zoom it */
  10. if status='UnZoomed' then window zoom
  11. else window unzoom front