home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / misc / amigalib.lha / edplayer.lha / edplayer / ExampEdP.rexx < prev    next >
OS/2 REXX Batch file  |  1992-08-12  |  889b  |  24 lines

  1. /* This is an example ARexx script to load four songs into
  2.    EdPlayer as a program, and start playing them.              */
  3.  
  4. /* Make sure EdPlayer is running, and without any programs in it.  Then,
  5.    make sure ARexx is running, and go to a CLI or Shell and type:
  6.    RX EdPlayer1.0:EdPlayer/ExampEdP
  7.    */
  8.  
  9. address 'EDPLAYER'      /* Who we're talking to */
  10.  
  11. 'PALM'    /* The following song(s) are to be played in PAL mode. */
  12. 'AUTO'    /* The following song(s) do NOT fade out. */
  13. 'JUKE music:mod.lonely'  /* song 1: PAL, no fade */
  14.  
  15. 'AUTO 4'  /* The following song(s) fade out at the normal rate (4). */
  16. 'JUKE music:mod.newkiss' /* song 2: PAL, fade 4 */
  17. 'JUKE music:mod.klijse'  /* song 3: PAL, fade 4 */
  18.  
  19. 'AUTO'    /* The following song(s) do NOT fade out. */
  20. 'JUKE music:mod.oh_yeah' /* song 4: PAL, no fade */
  21.  
  22. 'NEXT'    /* Start playing the whole thing! */
  23.  
  24. exit 0    /* the end */