home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / prog / arexx / scripti.lha / 3-DEE / Scripti / Operation / StartADPro.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1993-05-19  |  825 b   |  27 lines

  1. /*
  2. -----------------------------------------------------------------------------
  3. This program will start ADPRO and afterwarts, put it in the back.
  4. It will also set the defaults for the scripts:
  5. IFF-Saver, UNIVERSAL-Loader, no dither
  6.  
  7. Host  Address: ADPro (Art Department Professional   ®ASDG)
  8. Written by Jan Van Overbeke, 3-DEE, ©1993.
  9. Read the AREXX-Scripti doc, for more info about operation and rights!
  10. -----------------------------------------------------------------------------
  11. */
  12.  
  13. say 'Looking for ADPRO in ADPro:'
  14. if ~(exists('ADpro:ADPro')) then do
  15.             say ''
  16.             say 'Unable to find ADPro !!!!'
  17.             say 'ADPRO should be located as: ADPRO:ADPro'
  18.             exit
  19.         end
  20. doscommand='run >NIL: ADPRO:ADPRO'
  21. say 'Found ADPro and starting ADPro'
  22. address COMMAND doscommand
  23. address COMMAND 'wait 2'
  24. address 'ADPro'
  25. ADPRO_TO_BACK
  26. exit
  27.