Well that sucked; yet, it does work.  Have you checked it out?

Anthony Pace wrote:
Here is a pdf that shows it has the same output that you see in the flash player.

I haven't tried to send a document to the list before, so I hope it isn't filtered out. <cid:[email protected]>

Anthony Pace wrote:
in this instance I was able to fix it by changing "none" to "normal" in your linestyle.

Wendy Serrell wrote:
Anthony Pace wrote:
Can you show me an example?

Yes. Paste this code into a new AS2 file:

-------------------------------------------
this.createEmptyMovieClip("test_mc", this.getNextHighestDepth());
test_mc.lineStyle(15, 0xff0000, 100, true, "none", "round", "miter", 1);
test_mc.moveTo(15, 15);
test_mc.lineTo(15, 222);
test_mc.lineTo(25, 222);
test_mc.lineTo(25, 15);
test_mc.lineTo(25, 222);
test_mc.lineTo(30, 222);
test_mc.lineTo(30, 15);

var printJob:PrintJob = new PrintJob();
if (printJob.start()) {
    if(printJob.addPage(test_mc, null,{printAsBitmap:true}, 1))
printJob.send();
}
delete printJob;
-------------------------------------------

On screen, you'll see some overlapping red lines. But on the printed page, you'll see three thin vertical lines separated by white space, along with a
horizontal line which connects the bottoms of the three other lines.
Printing to a pdf gives the same results.

Putting in the xMin, xMax... options in the addPage() function instead of
'null' isn't helping.

Wendy


_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

------------------------------------------------------------------------

_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to