home *** CD-ROM | disk | FTP | other *** search
/ Hall of Fame / HallofFameCDROM.cdr / misc2 / pmusic12.lzh / MAKEPLAY.BAT < prev    next >
DOS Batch File  |  1989-12-08  |  656b  |  23 lines

  1. echo off
  2. echo Polyphonic Music version 1.20:
  3. echo.
  4.  
  5. if "%1"=="" goto noparam
  6. makepoly %1 %3
  7. if errorlevel 1 goto end
  8. playkb %1 %2
  9. goto end
  10.  
  11. :noparam
  12. echo This batch file compiles a ".sng" file then plays the corresponding
  13. echo ".ply" file created. (Use "" for a blank parameter).
  14. echo 1st parameter = the name of the ".sng" file.
  15. echo 2nd parameter = the song's play tempo (/s will check for processor speed)
  16. echo 3rd parameter = the frequency value to use for Middle C (use a '/')
  17. echo This batch file will only work for ".sng" files!
  18. echo. 
  19. echo Example: makeplay invent13 /s /337    (/s will figure tempo at run time)
  20. echo. 
  21.  
  22. :end
  23.