home *** CD-ROM | disk | FTP | other *** search
/ Autodesk - Texture Universe / TEXTURE_UNI.iso / browser.bat next >
Encoding:
DOS Batch File  |  1994-03-22  |  1.2 KB  |  44 lines

  1. @cls
  2. @echo==========================================================================
  3. @echo.  
  4. @echo     You must have a VESA compatible display and the correct VESA bios
  5. @echo     extension installed for the DOS Browser to display images correctly.
  6. @echo.
  7. @echo     The DOS Browser defaults to VESA mode 1.  If the Browser doesn't
  8. @echo     display correctly, set the VESA mode from the command line by typing 
  9. @echo     "BROWSER 0" for VESA mode 0, "BROWSER 2" for VESA mode 2, etc.
  10. @echo. 
  11. @echo     USAGE: BROWSER [MODE] 
  12. @echo.
  13. @echo==========================================================================
  14. @echo.
  15. @echo     TO USE THE DOS BROWSER
  16. @echo.
  17. @echo     To view a library, go to the Main Menu and type the letter assigned
  18. @echo     that library.
  19. @echo     To Quit, type ESC or Q at the Main Menu screen.
  20. @echo     Type any other key or click the right mouse button to advance 
  21. @echo     to the next screen.
  22. @echo.
  23. @echo==========================================================================
  24. @pause
  25. @echo off
  26. if "%1"=="" goto mode1
  27. goto mode2
  28.  
  29. :mode1
  30. cd browser 
  31. ANIPLAY -AUTO browse.SCR -d vesa 1
  32. goto quit
  33.  
  34. :mode2
  35. cd browser
  36. ANIPLAY -AUTO browse.SCR -d vesa %1
  37. goto quit
  38.  
  39. :quit
  40. @echo off
  41. cd\
  42. cls
  43.  
  44.