home *** CD-ROM | disk | FTP | other *** search
/ The SelectWare System Volume 2 #3 / The_SelectWare_System_Series_1_Volume_2_Number_3_Selectware.iso / las10000 / menu.bat < prev    next >
DOS Batch File  |  1990-09-07  |  768b  |  40 lines

  1. echo off
  2. :start
  3. cls
  4. echo .
  5. echo     The Laser/Law demo can be run interactively,
  6. echo     or you watch a self running slideshow.
  7. echo .
  8. echo     Please choose one of the selections below:
  9. echo .
  10. echo     1. Interactive demo
  11. echo     2. Self running slideshow
  12. echo     3. Quit
  13. echo .
  14. echo     Please enter the number for your choice:
  15. query
  16.  
  17. if errorlevel = 3 goto exit
  18. if errorlevel = 2 goto slideshow
  19. if errorlevel = 1 goto inter
  20.  
  21. echo Unavailable choice.
  22. pause
  23. goto start
  24.  
  25. REM run interactive demo
  26. :inter
  27. echo Loading interactive demo
  28. LASER
  29. goto exit
  30.  
  31. REM Slideshow
  32. :slideshow
  33. echo Loading slideshow demo
  34. DEMO
  35. goto exit
  36.  
  37. :exit
  38. echo .
  39. echo returning to The SelectWare System
  40.