home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / games / cwp.zip / POSTSCPT.BAT < prev    next >
DOS Batch File  |  1990-10-08  |  549b  |  19 lines

  1. @ECHO OFF
  2. REM POSTSCPT.BAT - Copyright (c) 1990, Richard L. Siddall. All rights reseved.
  3. REM for use with Crossword Publisher (XWP).
  4. REM This file runs Crossword Publisher and creates most of an EPS file from its
  5. REM output.
  6. IF "%1" == "" GOTO NO_PUZZLE
  7. XWP %1.XWP/SETUP=POSTSCPT/MATRIX=%1.XPS
  8. IF ERRORLEVEL 1 GOTO XWP_ERROR
  9. COPY POSTSCPT.HDR+%1.XPS+POSTSCPT.FTR %1.EPS
  10. DEL %1.XPS
  11. ECHO Now edit %1.EPS to insert the correct Bounding Box measurements
  12. GOTO EXIT
  13. :NO_PUZZLE
  14. ECHO Puzzle name required!
  15. GOTO EXIT
  16. :XWP_ERROR
  17. :EXIT
  18. EXIT
  19.