home *** CD-ROM | disk | FTP | other *** search
- /*
- ** DisplayImage.adproapp
- **
- ** $VER: DisplayImage.adproapp 1.0.0 (29.1.94)
- **
- ** This ARexx script for ADPro is intended to be used as the script that
- ** gets executed when one or more files is dropped on the ADPro AppWindow
- ** or AppIcon. As such, you should set the APPSCRIPT tool type or
- ** CLI argument to this script's filename.
- **
- ** This app script allows you to load and display the first image dropped
- ** on the AppWindow/AppIcon/AppMenu. If more than one image is dropped,
- ** they will be ignored.
- **
- ** This script requires ADPro v2.5.0 (or higher).
- **
- ** Copyright © 1993-1994 ASDG, Incorporated
- ** All Rights Reserved
- */
-
-
- ADDRESS "ADPro"
- OPTIONS RESULTS
-
- PARSE ARG Filenames
-
- NL = '0A'X
- SQ = '27'X
- DQ = '22'X
- TRUE = 1
- FALSE = 0
- TempDefaults = "T:TempADProDefaults"
-
-
- /*
- ** Save the current environment.
- */
-
- SAVE_DEFAULTS TempDefaults
-
-
- /*
- ** Build list of images, just in case we need to loop.
- */
-
- NumFiles = WORDS( Filenames )
- DO i=1 TO NumFiles
- FrameFName.i = WORD( Filenames, i )
- END
-
-
- /*
- ** Load only the first image.
- */
-
- LOADER "UNIVERSAL" FrameFName.1
- IF (RC ~= 0) THEN DO
- ADPRO_TO_FRONT
- OKAY1 "Error loading file:" || NL ||,
- FrameFName.1
- CALL ErrorOut 10
- END
-
- CALL ErrorOut 0
-
-
- ErrorOut:
- PARSE ARG ExitCode
-
- IF (EXISTS( TempDefaults )) THEN DO
- LOAD_DEFAULTS TempDefaults
- IF (RC ~= 0) THEN DO
- ADPRO_TO_FRONT
- OKAY1 "Error restoring settings."
- END
-
- ADDRESS COMMAND "Delete >NIL:" TempDefaults
- END
-
- EXIT ExitCode
-