home *** CD-ROM | disk | FTP | other *** search
- /*
- * OilPaint.ifx.pre
- * Written by Thomas Krehbiel
- *
- * Template for AutoFX scripts.
- *
- * Inputs:
- * Word(Arg(1),1) = Sequence number (?)
- * Word(Arg(1),2) = Total number of frames (N)
- *
- * Returns:
- * 0 if successful, non-zero on failure
- *
- */
-
- OPTIONS RESULTS
-
- base = 'Autofx_OilPaint_'
-
- a = GETCLIP(base||'Radius') ; IF a = "" THEN a = 2
-
- RequestSlider '"OilPaint Radius:"' 2 50 a
- IF rc ~= 0 THEN EXIT rc
-
- CALL SETCLIP(base||'Radius', result)
-
- EXIT
-