Printing Dynamically Insantiated MovieClips (multi-page printing)

Ask a Question related to Macromedia Flash Actionscript, Design and Development.

  1. #1

    Default Re: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 movieclip populated with different data, it prints only the movieclip without any data in it.

    fe.
    I have MC named forPrintMC. It have static text and dynamic textField named someTextFieldValue.

    myPJ = new PrintJob();
    var myResult = myPJ.start();
    if (myResult) {
    _root.forPrintMC.someTextFieldValue = "test";
    myResult = myPJ.addPage("forPrintMC");
    _root.forPrintMC.someTextFieldValue = "test2";
    myResult = myPJ.addPage("forPrintMC");
    myPJ.send();
    }
    delete myPJ;

    I do get multiple pages, but movieclip is without someTextFieldValue.


    :: e1 :: webforumsuser@macromedia.com 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. Printing excel multi worksheet to 1 PDF
      I'm trying to print an excel file containing around 50 worksheets to PDF file using Acrobat version 5.0.5. The problem is that the print is divided...
    3. dynamically controlling movieclips
      I am a rookie ActionScripter who has a question about dynamically controlling movieclips. I am trying to make a movieclip play using the hitTest...
    4. 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
    5. How to Unload MovieClips dynamically?
      I am pritty green at this. However, I would like to build a movie dynamically from an empty stage. I can load movies and stack them but I can not...
  3. #2

    Default Re:Printing Dynamically Insantiated MovieClips(multi-page printing)

    PrintJob obect is answer to your problem. Go through the flash documention and
    try to solve your problem. If you still have problem, feel free to post here. I
    would give specific example to your problem


    //Abdu

    Abdul Qabiz 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