home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / UTILITY / PRINTER / ZBPLT101.ZIP / ENVELOPE.PLT < prev    next >
Encoding:
Text File  |  1991-03-15  |  1.6 KB  |  59 lines

  1. ** ENVELOPE.PLT
  2. **
  3. ** NOTE: You will need a number 10 envelope (4.12" x 9.5") to run
  4. ** this sample plot.
  5. **
  6. ** NOTE: You should always open the rear feed door when running envelopes.
  7. **
  8. ** This format complies with the new postal recommendations for machine
  9. ** read mail.
  10. **
  11. ** 1) Machine written or typewritten (no script)
  12. **
  13. ** 2) ALL CAPS
  14. **
  15. ** 3) Uniformly aligned on the left margin
  16. **
  17. ** 4) Without punctuation (use 1 or 2 spaces instead)
  18. **
  19. ** 5) In black ink on a white background
  20. **
  21. ** 6) Clear and sharp without touching or overlapping
  22. **
  23. ** 7) Clearly visible in windowed envelopes, even when insert shifts
  24. **
  25. ** 8) Parallel to bottom edge of envelope - not slanted
  26. **
  27. ** 9) ZIP code or ZIP+4 code may stand alone on the bottom line
  28. **    if not enough room on City and State line
  29. **
  30. ** (Just thought we'd pass that along.)
  31. **
  32. ** Set the left margin at 4" so the carriage return will always
  33. ** move to the proper location.
  34. **
  35. **
  36.   FORM IN 81 L 4.00 0.40 2.00 0.40
  37.   MOVA 0.00 0.00
  38. **
  39. ** If any portion of a character on a line of text extends above the
  40. ** top margin.  The whole line of text will be clipped and no characters
  41. ** will be printed on that line. (HP tech ref manual)
  42. **
  43. ** So, from the 0,0 position the first thing we'll do is issue a
  44. ** carriage return.  This will insure that the following line of
  45. ** text will print below the top margin and no clipping will occur.
  46. **
  47.   CHAR 010
  48. **
  49. ** Okay, now we can do the text.
  50. **
  51.   TEXT ATTN  SALES  DEPARTMENT
  52.   CHAR 010
  53.   TEXT ZAMBINI  BROTHERS  SOFTWARE
  54.   CHAR 010
  55.   TEXT 17736  FIVE  POINTS
  56.   CHAR 010
  57.   TEXT DETROIT  MI  48240-2122
  58.   CHAR 010
  59.