home *** CD-ROM | disk | FTP | other *** search
/ Hot Stuff 2 / hot_stuff_2.zip / hot_stuff_2 / DEMOS / ANIMARK / RUNME.BAT < prev    next >
DOS Batch File  |  1992-11-04  |  867b  |  54 lines

  1. @echo off
  2. echo off
  3. :menustart
  4. cls
  5. echo:
  6. echo ********** Animated Marketing Menu ***********
  7. echo: 
  8. echo [A] Rotating 3D molecule
  9. echo [B] EGA and VGA 3D Samples
  10. echo [C] Bellis and Morcomm Pump - nice!
  11. echo [D] Spaced out world animation
  12. echo [E] Rainbow test pattern - good for adjusting Barcos
  13. echo [F] 16 color animation samples
  14. echo [G] Camloc demo
  15. echo:
  16. echo [Q] Return to main menu
  17. echo:
  18. \programs\what c "Select your choice [A..G,q] -> " abcdefgq
  19. echo:
  20. if %what%==A goto a
  21. if %what%==B goto b
  22. if %what%==C goto c
  23. if %what%==D goto d
  24. if %what%==E goto e
  25. if %what%==F goto f
  26. if %what%==G goto g
  27. goto exittodos
  28. :a
  29. bigmol
  30. goto menustart
  31. :b
  32. anim
  33. goto menustart
  34. :c
  35. pump
  36. goto menustart
  37. :d
  38. world
  39. goto menustart
  40. :e
  41. rainbow
  42. goto menustart
  43. :f
  44. anim16
  45. goto menustart
  46. :g
  47. camloc
  48. goto menustart
  49.  
  50.  
  51. :exittodos
  52. set what=
  53. cls
  54.