home *** CD-ROM | disk | FTP | other *** search
- /*
- * $VER: GrabScreen 2.0.1 (8.6.94)
- *
- * Arexx program for the ImageFX image processing system.
- * Written by Thomas Krehbiel
- *
- * GrabScreen - simple screen grabbing utility.
- *
- */
-
- OPTIONS RESULTS
-
- DO FOREVER
- GrabBuffer
- IF rc ~= 0 THEN LEAVE
- SaveBufferAs ILBM
- IF rc ~= 0 THEN LEAVE
- END
-
- EXIT
-