home *** CD-ROM | disk | FTP | other *** search
- /**
- ** Frontend als Bildanzeiger aus MUIVideo
- ** Startet je nach übergebenem Dateityp
- ** ein anderes Programm.
- **
- ** $VER: Decider.rexx V1.0 (21.12.96)
- **
- ** Copyright by Christoph Kirsch
- **
- **/
-
- Options Results
-
- Parse Arg option
-
- erstes = SubWord(option,1,1)
-
- if Right(erstes,4) = ".jpg" then do /* JPEG-Bild */
- address command "c:T-Pex " || option /* T-Pex benutzen */
- exit
- end
- /* sonstiges mit MultiView anzeigen */
- address command "System:Utilities/MultiView SCREEN " || option
-
- exit
-