home *** CD-ROM | disk | FTP | other *** search
- /*
- -----------------------------------------------------------------------------
- This program will start ADPRO and afterwarts, put it in the back.
- It will also set the defaults for the scripts:
- IFF-Saver, UNIVERSAL-Loader, no dither
-
- Host Address: ADPro (Art Department Professional ®ASDG)
- Written by Jan Van Overbeke, 3-DEE, ©1993.
- Read the AREXX-Scripti doc, for more info about operation and rights!
- -----------------------------------------------------------------------------
- */
-
- say 'Looking for ADPRO in ADPro:'
- if ~(exists('ADpro:ADPro')) then do
- say ''
- say 'Unable to find ADPro !!!!'
- say 'ADPRO should be located as: ADPRO:ADPro'
- exit
- end
- doscommand='run >NIL: ADPRO:ADPRO'
- say 'Found ADPro and starting ADPro'
- address COMMAND doscommand
- address COMMAND 'wait 2'
- address 'ADPro'
- ADPRO_TO_BACK
- exit
-