home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Amiga Shareware Floppies / ma23.dms / ma23.adf / Filer / Rexx / MPEGPlay.filer < prev    next >
Text File  |  1993-11-27  |  657b  |  37 lines

  1. /* 
  2.  
  3.    $VER: MPEGPlay.filer 1.1 (20.11.93)
  4.  
  5.    Author:
  6.     Matthias Scheler (tron@lyssa.pb.owl.de)
  7.  
  8.    Function:
  9.     Plays MPEG files with Michael van Elst's mp V1.03.
  10.     It pops up a requester asking to use HAM6 instead of the GRAY.
  11.  
  12.    Requires:
  13.     mp V1.03 or newer
  14.  
  15.    Call:
  16.     MPEGPlay FILENAME
  17.  
  18.    Example for "Filer.RC":
  19.     REXXCLASS "#?.mpg","","MPEGPlay %s"
  20.  
  21. */
  22.  
  23. PARSE ARG FileName
  24.  
  25. ADDRESS 'FilerRexx'
  26. OPTIONS RESULTS
  27.  
  28. 'STATUS Playing MPEG Animation' FileName
  29. PANEL OFF
  30.  
  31. QUESTBOX 'Play animation in HAM6 ?'
  32. IF RESULT THEN EXEC 'mp -dither ham6' FileName
  33. ELSE EXEC 'mp -dither gray' FileName
  34.  
  35. PANEL ON
  36. 'HISTORY Played MPEG Animation' FileName
  37.