home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / LASER / GLYPHIX.ZIP / DEMO.BAT < prev    next >
Encoding:
DOS Batch File  |  1988-02-15  |  2.0 KB  |  45 lines

  1. ECHO OFF
  2. CLS
  3. ECHO Welcome to the 5 Minute GLYPHIX Font Demonstration!
  4. ECHO                       .................
  5. ECHO The font files for this demonstration take up close to a megabyte of
  6. ECHO disk space.  Please be sure you have copied all the files from this
  7. ECHO diskette to a directory on your hard disk, and that you have enough
  8. ECHO space on your hard disk for the demo to run.  Also make sure that your
  9. ECHO printer is turned on and attached to the LPT1: port.
  10. ECHO                       .................
  11. ECHO If you haven't copied this demonstration to your hard disk, we will give
  12. ECHO you some more detailed instructions on how to do so now.  If the files
  13. ECHO for this demostration are on your hard disk, the demonstration will
  14. ECHO proceed normally.  It's all automatic!  Let's get started.
  15. ECHO                       .................
  16. PAUSE
  17. CLS
  18. DRCHECK
  19. IF ERRORLEVEL 4 GOTO INSTRUX
  20. GOTO INSTALL
  21. :INSTRUX
  22. CLS
  23. ECHO Due to the limited memory available on the floppy disk, all of the files
  24. ECHO on this diskette must be copied onto a hard disk for the demonstration
  25. ECHO to run properly.  To copy the files to your hard disk enter the following
  26. ECHO instructions:  (Note that comments are in parentheses).
  27. ECHO                  C: (then press enter - we assume C is your hard disk)
  28. ECHO                  CD\ (press enter)
  29. ECHO                  MD\GLXDEMO (press enter - makes a directory GLXDEMO)
  30. ECHO                  CD\GLXDEMO (press enter - changes directory to GLXDEMO)
  31. ECHO                  COPY A:*.* (press enter - disk in A, copies files to C)
  32. ECHO                       .................
  33. ECHO And that's all there is to it!  Just type DEMO again after following these
  34. ECHO instructions and you'll be off and running.
  35. GOTO END
  36. :INSTALL
  37. ECHO Soft font files usually take up a lot of disk space, so we had to compress
  38. ECHO them to fit everything on one diskette.  Now, we will decompress them.
  39. ARC-E DEMO >NUL
  40. DEL DEMO.ARC >NUL
  41. ECHO Decompression completed successfully!
  42. DEL ARC-E.* >NUL
  43. DEMO2
  44. :END
  45.