home *** CD-ROM | disk | FTP | other *** search
/ Amiga ACS 1998 #4 / amigaacscoverdisc1998-041998.iso / utilities / shareware / business / muivideo / arexx / decider.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1996-12-21  |  617 b   |  26 lines

  1. /**
  2.  ** Frontend als Bildanzeiger aus MUIVideo
  3.  ** Startet je nach übergebenem Dateityp
  4.  ** ein anderes Programm.
  5.  **
  6.  ** $VER: Decider.rexx V1.0 (21.12.96)
  7.  **
  8.  ** Copyright by Christoph Kirsch
  9.  **
  10.  **/
  11.  
  12. Options Results
  13.  
  14. Parse Arg option
  15.  
  16. erstes = SubWord(option,1,1)
  17.  
  18. if Right(erstes,4) = ".jpg" then do                            /* JPEG-Bild */
  19.     address command "c:T-Pex " || option                       /* T-Pex benutzen */
  20.     exit
  21. end
  22.                                                                /* sonstiges mit MultiView anzeigen */
  23. address command "System:Utilities/MultiView SCREEN " || option
  24.  
  25. exit
  26.