Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default Printing envelopes

    Surely it has to be simply. Is it possible to print an envelope from a
    browser window using CSS, Flash, ??? User opens a record, selects print and a
    letter and envelope need to come out. I believe I've gotten the letter to
    word, but how in the world do you do envelopes? I guess you format it such
    that if they put an envelope into the manual feed it would work, but surely
    there is a better way. Has anyone seen this or tackled this before? Terry

    TerryMiddleton Guest

  2. Similar Questions and Discussions

    1. Freehand printing - right margin decreases when printing multiple copies of file.
      I'm using Freehand mx. Everytime I print more than one copy of a file, the right margin decreases. Thus, if I print five or six copies of a file,...
    2. Biz Cards/Labels - Templates - Envelopes & Presets
      Okay, I've searched and found some messages about Biz Cards, Templates, and Presets vs Templates... but: Biz Cards (and Labels) - Templates - I...
    3. Creating envelopes
      Can someone show me an example of an envelope with a mesh? And how it is created? Thanks
    4. Printing Dynamically Insantiated MovieClips (multi-page printing)
      I can create multiple pages with just one prompt with new PrinJob() object in Flash MX2004; but ... .... when I try to addpages which is one...
    5. Printing without showing the printing dialog window
      hey - did you ever figure out a solution to the printing without dialog issue? i'm trying to get around the same problem myself. thanks! -jason
  3. #2

    Default Re: Printing envelopes

    You are right in the way you are thinking.

    The page you make is "X" pixels wide to make sure it's the right width when
    the envelope is printed...

    James


    "TerryMiddleton" <webforumsuser@macromedia.com> wrote in message
    news:cv4hnh$fai$1@forums.macromedia.com...
    > Surely it has to be simply. Is it possible to print an envelope from a
    > browser window using CSS, Flash, ??? User opens a record, selects print
    > and a
    > letter and envelope need to come out. I believe I've gotten the letter to
    > word, but how in the world do you do envelopes? I guess you format it
    > such
    > that if they put an envelope into the manual feed it would work, but
    > surely
    > there is a better way. Has anyone seen this or tackled this before?
    > Terry
    >

    Jamesy Guest

  4. #3

    Default Re: Printing envelopes

    One problem you have is that some printers print envelopes the long way (text
    needs to rotate 90 degrees) and some print the short way. Depending on what
    needs to be printed one way I did this in the past was to create a 3 row/1 col
    table that had the address in the top cell and the body of the letter in the
    remaining 2. Then you can fold the piece of paper w/ the address on the outside
    and staple or tape the paper closed, slap a stamp on it and mail. This is not
    a solution for something that needs to be in an envelope, but it works for a
    newsletter/flyer type thing. You need to convert inches to pixels to set up
    the row heights. Most monitors are around 96dpi so for 8.5x11 you need to set
    the table to 8.5 X 96 pixels wide (816) and 11X 96 pixels tall (1056). Then
    divide the height by 3 (352) to get the height of the three rows.
    ______________________________________________ |
    stamp here | |
    John Doe |
    Address | City, State, Zip |

    | ______________________________________________ |

    | Dear John,
    |
    | Body of letter here
    |
    |

    ______________________________________________ |
    continues here...
    |
    |
    |
    |

    |

    ______________________________________________

    stevenlmas Guest

  5. #4

    Default Re: Printing envelopes

    Use CSS so you can define your dimensions in inches. The user can rotate
    the page as needed for his particular printer from the print preview screen.
    Quick and dirty (untested) example:
    <table id="envelope">
    <tr>
    <td>From Address</td>
    <td>&nbsp;</td>
    <td>(Stamp)</td>
    </tr>
    <tr>
    <td>&nbsp;</td>
    <td colspan="2">Address</td>
    </tr>
    <tr>
    <td>&nbsp;</td>
    <td colspan="2">City, State ZIP</td>
    </tr>

    CSS:
    table#envelope {
    width=8in;
    height=6in;
    }

    I have no idea how big standard envelopes are, though. I just guessed. :)
    "TerryMiddleton" <webforumsuser@macromedia.com> wrote in message
    news:cv4hnh$fai$1@forums.macromedia.com...
    > Surely it has to be simply. Is it possible to print an envelope from a
    > browser window using CSS, Flash, ??? User opens a record, selects print
    and a
    > letter and envelope need to come out. I believe I've gotten the letter to
    > word, but how in the world do you do envelopes? I guess you format it
    such
    > that if they put an envelope into the manual feed it would work, but
    surely
    > there is a better way. Has anyone seen this or tackled this before?
    Terry
    >

    CMBergin Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139