论坛交流
首页办公自动化| 网页制作| 平面设计| 动画制作| 数据库开发| 程序设计| 全部视频教程
应用视频: Windows | Word2007 | Excel2007 | PowerPoint2007 | Dreamweaver 8 | Fireworks 8 | Flash 8 | Photoshop cs | CorelDraw 12
编程视频: C语言视频教程 | HTML | Div+Css布局 | Javascript | Access数据库 | Asp | Sql Server数据库Asp.net  | Flash AS
当前位置 > 文字教程 > Flash AS教程
Tag:2.0,3.0菜鸟,游戏,,cs,技巧,源码,,文本,文字,函数,音乐,随机,拖拽,asp,access,xml,mc,视频教程

学习打印类方法

文章类别:Flash AS | 发表日期:2009-8-9 15:40:03

学习打印类方法
简单打印
package {
       import flash.printing.PrintJob;
       import flash.printing.PrintJobOptions;
       import flash.printing.PrintJobOrientation;
       import flash.display.Sprite;
       import flash.geom.Rectangle;

       public class BasicPrintExample extends Sprite {
              var myPrintJob:PrintJob = new PrintJob();
              var mySprite:Sprite = new Sprite();
              var options:PrintJobOptions = new PrintJobOptions();
              var rect1:Rectangle=new Rectangle(0,0,400,200);


              public function BasicPrintExample() {
                     options.printAsBitmap=true;
                     myPrintJob.start();
                     myPrintJob.addPage(mySprite, rect1, options);
                     myPrintJob.send();
              }
       }
}


多页打印
package {
       import flash.display.MovieClip;
       import flash.printing.PrintJob;
       import flash.printing.PrintJobOrientation;
       import flash.display.Stage;
       import flash.display.Sprite;
       import flash.text.TextField;
       import flash.geom.Rectangle;

       public class PrintMultiplePages extends MovieClip {
              private var sheet1:Sprite;
              private var sheet2:Sprite;

              public function PrintMultiplePages():void {
                     init();
                     printPages();
              }

              private function init():void {
                     sheet1 = new Sprite();
                     createSheet(sheet1, "Once upon a time...", {x:10, y:50, width:80, height:130});
                     sheet2 = new Sprite();
                     createSheet(sheet2, "There was a great story to tell, and it ended quickly.\n\nThe end.", null);
              }

              private function createSheet(sheet:Sprite, str:String, imgValue:Object):void {
                     sheet.graphics.beginFill(0xEEEEEE);
                     sheet.graphics.lineStyle(1, 0x000000);
                     sheet.graphics.drawRect(0, 0, 100, 200);
                     sheet.graphics.endFill();

                     var txt:TextField = new TextField();
                     txt.height=200;
                     txt.width=100;
                     txt.wordWrap=true;
                     txt.text=str;

                     if (imgValue!=null) {
                            var img:Sprite = new Sprite();
                            img.graphics.beginFill(0xFFFFFF);
                            img.graphics.drawRect(imgValue.x, imgValue.y, imgValue.width, imgValue.height);
                            img.graphics.endFill();
                            sheet.addChild(img);
                     }
                     sheet.addChild(txt);
              }

              private function printPages():void {
                     var pj:PrintJob = new PrintJob();
                     var pagesToPrint:uint=0;
                     if (pj.start()) {
                            if (pj.orientation==PrintJobOrientation.LANDSCAPE) {
                                   throw new Error("Page is not set to an orientation of portrait.");
                            }

                            sheet1.height=pj.pageHeight;
                            sheet1.width=pj.pageWidth;
                            sheet2.height=pj.pageHeight;
                            sheet2.width=pj.pageWidth;

                            try {
                                   pj.addPage(sheet1);
                                   pagesToPrint++;
                            } catch (error:Error) {
                                   // 响应错误。
                            }

                            try {
                                   pj.addPage(sheet2);
                                   pagesToPrint++;
                            } catch (error:Error) {
                                   // 响应错误。
                            }

                            if (pagesToPrint>0) {
                                   pj.send();
                            }
                     }
              }
       }
}
视频教程列表
文章教程搜索
 
Flash AS推荐教程
Flash AS热门教程
看全部视频教程
购买方式/价格
购买视频教程: 咨询客服
tel:15972130058