home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / games / cwp.zip / VPPROF.XSU < prev    next >
Text File  |  1990-10-07  |  3KB  |  63 lines

  1. ; VPPROF.XSU - Crossword Publisher 1.0 Setup file for Xerox Professional Extension
  2. ; Copyright (c) 1990, Longridge Software. All rights reserved.
  3. ; Author: Richard L. Siddall, 07-OCT-90.
  4. ;
  5. ; IMPORTANT NOTE: XWP will object if any of these strings is missing, and
  6. ; expects them in this order. MODIFY THIS FILE CAREFULLY. KEEP A BACKUP.
  7. ; XWP concatenates strings on consecutive lines if the first line does not end
  8. ; with a semi-colon or comma.
  9. ;
  10. ; This file illustrates one possible way of generating text from a crossword
  11. ; for direct importation into Professional Extension as an ASCII text file.
  12. ; Print it out and examine it.
  13. ; The lines controlling the format of the clues text file are the same as in
  14. ; the other setup files, since we assume you will use Ventura Publisher to
  15. ; typeset your clues.
  16. ; The matrix is generated as a Professional Extension table. Cell tint is used
  17. ; to make blank cells black.
  18. ;
  19. ; String starting clues file - receives title and author
  20. "@HEADLINE = %s<$M[CROSSWORD]>\n\n"
  21. "@BYLINE = Devised by %s\n\n"
  22. "@SECTION = CLUES ACROSS\n\n";
  23. ; String starting clues down
  24. "@SECTION = CLUES DOWN\n\n";
  25. ; String for each clue - receives number, clue and optional length
  26. "@UNINDENT = %d. %s%s\n\n";
  27. ; String ending clues file
  28. "The solution to this crossword will be published in the next issue.";
  29. ; String for unsolved cell - receives number
  30. "%s";
  31. ; String for solved cell - receives number and one letter of solution
  32. "%s\t%c";
  33. ; String for number - receives number
  34. "<^>%d<D>";
  35. ; String for blank cell - sets tint of cell
  36. "<$!B18>";
  37. ; String separating cells
  38. ", ";
  39. ; String ending row of cells
  40. "\n\n";
  41. ; String starting crossword matrix - receives width in cells
  42. "@Z_TBL_BEG = COLUMNS(%d), DIMENSION(IN), VGUTTER(.056), BOX(Z_SINGLE), \n"
  43. "HGRID(Z_SINGLE), VGRID(Z_SINGLE), KEEP(OFF)\n\n"
  44. "@Z_TBL_BODY = ";
  45. ; Header row cell text - blank suppresses header row - this is a tag name
  46. "CROSSWORD";
  47. ; String ending crossword matrix
  48. "@Z_TBL_END = \n\n";
  49. ; String preceeding solution length in clues file
  50. " (";
  51. ; String following solution length in clues file
  52. ").";
  53. ; String separating parts of solution length in clues file
  54. ", ";
  55. ; String for "Same as 13 across" clue - receives number and direction of clue
  56. "Same as %d %s";
  57. ; String for "Opposite of 13 across" clue - receives number and direction of clue
  58. "Opposite of %d %s";
  59. ; String for across in generated clues
  60. "across";
  61. ; String for down in generated clues
  62. "down";
  63.