home *** CD-ROM | disk | FTP | other *** search
- /*
- * $VER: PostRedraw 1.00.00 (24.9.92)
- *
- * Arexx program for the ImageFX image processing system.
- * Written by Thomas Krehbiel
- *
- * This program is called after ImageFX redraws the screen; this allows
- * you to add a hook to update another display automatically. You must
- * first call "SetPrefs AutoRender On" before this will actually be
- * used.
- *
- */
-
- PARSE ARG left top width height .
-
- OPTIONS RESULTS
-
- IF ARG() > 0 THEN DO
- Render Area left top width height
- END
- ELSE DO
- Render Go
- END
-
- EXIT
-