home *** CD-ROM | disk | FTP | other *** search
/ Hot Stuff 2 / hot_stuff_2.zip / hot_stuff_2 / DEMOS / ARTEXX / RUNME.BAT
DOS Batch File  |  1992-11-04  |  643b  |  38 lines

  1. @echo off
  2. echo off
  3. :menustart
  4. cls
  5. echo:
  6. echo ******************** Art Exchange Menu ********************
  7. echo: 
  8. echo [1] DEMO1        , Original illustration and Wormville
  9. echo [2] DEMO2        , Watch this Space and information
  10. echo:                 
  11. echo [Q] Return to dos.
  12. echo:
  13. echo:
  14. \programs\what c "Select your choice [1,2,q] -> " 12q
  15. echo:
  16. if %what%==1 goto d1
  17. if %what%==2 goto d2
  18. goto exittodos
  19. :d1
  20. @echo off
  21. echo off
  22. cd demo1
  23. play -sequence @demo
  24. cls
  25. type info.doc | more
  26. pause
  27. cd ..
  28. goto menustart
  29. :d2
  30. @echo off
  31. echo off
  32. cd demo2
  33. play -sequence @demo
  34. cd ..
  35. goto menustart
  36. :exittodos
  37. set what=
  38.