Ich möchte nur wissen, dass das Drucken Problem mit Aktionsskript 3 in Flash-Web.AS3 Flash printJob Drucken leere Seite
Ich habe zwei Videoclips, von denen einer ein Bitmap-Bild hat, der andere wird für Papiergröße verwendet.
Ich versuche, diese Arbeit zu drucken, aber ich habe immer leeres Papier. Was ist falsch in meinem Code?
var printJob:PrintJob = new PrintJob();
//stage.stageWidth = 2481;
//stage.stageHeight = 3508;
mc.width = 980; // mc is a paper
mc.height = 700;
mc.x = mc.y = 0;
mc.addChild(content_mc);
content_mc.x = 10; // content_mc is a movie clip has a bitmap
content_mc.y = 10;
addChild(content_mc);
if (printJob.start()) {
if (mc.width>printJob.pageWidth) {
mc.width=printJob.pageWidth;
mc.scaleY=mc.scaleX;
}
var rect1:Rectangle = new Rectangle(0, 0, 980, 700);
printJob.addPage(mc,rect1);
printJob.send();
}
Das ist großer Job :) Vielen Dank – Richard