home *** CD-ROM | disk | FTP | other *** search
- /*
- * Composite_Merge.ifx.pre
- * Written by Thomas Krehbiel
- *
- * Composite tool.
- *
- * 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_CompositeMerge_'
-
- blendv = GETCLIP(base||'Blend')
- IF blendv = '' THEN blendv = 50
-
- RequestSlider '"Blend Percentage:"' 1 100 blendv
- IF rc ~= 0 THEN EXIT rc
-
- blendv = result
-
- CALL SETCLIP(base||'Blend', blendv)
-
- EXIT
-