home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / GFX / Converter / IMAFX26.lha / imagefx2 / rexx / GrabScreen.ifx < prev    next >
Encoding:
Text File  |  1994-07-07  |  314 b   |  21 lines

  1. /*
  2.  * $VER: GrabScreen 2.0.1 (8.6.94)
  3.  *
  4.  * Arexx program for the ImageFX image processing system.
  5.  * Written by Thomas Krehbiel
  6.  *
  7.  * GrabScreen - simple screen grabbing utility.
  8.  *
  9.  */
  10.  
  11. OPTIONS RESULTS
  12.  
  13. DO FOREVER
  14.    GrabBuffer
  15.    IF rc ~= 0 THEN LEAVE
  16.    SaveBufferAs ILBM
  17.    IF rc ~= 0 THEN LEAVE
  18.    END
  19.  
  20. EXIT
  21.