home *** CD-ROM | disk | FTP | other *** search
- /*
- ** Fresco.fred.pre
- **
- ** $VER: Fresco.fred.pre 1.1.0 (23.10.93)
- **
- ** If the Fresco.fred script appears in the InvokeADPro list,
- ** this program will check for the existence of the required
- ** convolution matrices.
- **
- ** This script requires FRED v1.4.0 (or higher) to run. Also required is
- ** ADPro v2.5.0 (or higher).
- **
- ** Copyright © 1992-1993 ASDG, Incorporated
- ** All Rights Reserved
- */
-
-
- ADDRESS "ADPro"
- OPTIONS RESULTS
-
- PARSE ARG NumberOfCells NumberOfFrames
-
- NL = '0A'X
- SQ = '27'X
- DQ = '22'X
- TRUE = 1
- FALSE = 0
-
- IF (~EXISTS( "ADPRO:Convolutions/WoodCut" )) THEN DO
- ADPRO_TO_FRONT
- OKAY1 "The WoodCut convolution cannot" || NL ||,
- "be found."
- SCREEN_TO_FRONT "FRED"
- EXIT 10
- END
-
- EXIT 0
-