home *** CD-ROM | disk | FTP | other *** search
/ CD Player 1994 January / CdPlayer94-01.iso / sierra / ll6demo / resource / anitest.bat < prev    next >
DOS Batch File  |  1993-08-25  |  1KB  |  57 lines

  1. @echo off
  2. mode co80
  3. echo.
  4. echo.
  5. echo.
  6. echo Before you can run this demo for the first time, we must determine the
  7. echo capabilities of your VESA-compatible VGA card.  A screen will be briefly
  8. echo displayed that will either be an all-blue screen, or a blue screen with
  9. echo yellow stripes at the top and the bottom.
  10. echo.
  11. echo Press T to display the test screen now.
  12. getkey T
  13. cls
  14. if not "%getkey%"=="T" goto End
  15. echo One momment please ...
  16. aniplay resource\anitest.scr -d vesa 0 -a
  17. cls
  18. echo.
  19. echo.
  20. echo.
  21. echo Did the screen have yellow stripes at the top and bottom? (Y,N)
  22. getkey YN
  23. cls
  24. if "%getkey%"=="ESC" goto End
  25. if "%getkey%"=="Y" goto mode0
  26. cls
  27. echo.
  28. echo.
  29. echo.
  30. echo Once again, a screen will be briefly displayed that will either be an 
  31. echo all-blue screen, or a blue screen with yellow stripes at the top and 
  32. echo the bottom.
  33. echo.
  34. echo Press T to display the test screen again now.
  35. getkey T
  36. cls
  37. if not "%getkey%"=="T" goto End
  38. echo One momment please ...
  39. aniplay resource\anitest.scr -d vesa 1 -a
  40. cls
  41. echo.
  42. echo.
  43. echo.
  44. echo Did the screen have yellow stripes at the top and bottom? (Y,N)
  45. getkey YN
  46. cls
  47. if "%getkey%"=="ESC" goto End
  48. if "%getkey%"=="Y" goto mode1
  49. echo @aniplay demo.scr -d vesa 2 -a >c:\sierra\democd\anidemo.bat
  50. goto End
  51. :mode1
  52. echo @aniplay demo.scr -d vesa 1 -a >c:\sierra\democd\anidemo.bat
  53. goto End
  54. :mode0
  55. echo @aniplay demo.scr -d vesa 0 -a >c:\sierra\democd\anidemo.bat
  56. :End
  57.