ActionScript 3 PrintJob基础知识

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 PrintJob基础知识相关的知识,希望对你有一定的参考价值。

import flash.printing.*;
import flash.geom.Rectangle;


private function doPrint():void 
{
	var _print:PrintJob = new PrintJob();
	if(_print.start()){
		var contentArea:Rectangle;
		//Use this to specify an area of the MC
		//contentArea = new Rectangle(0,0,550,550);
		_print.addPage(projLayer, contentArea);
		_print.send();
	}
}

以上是关于ActionScript 3 PrintJob基础知识的主要内容,如果未能解决你的问题,请参考以下文章

Swiffy 不支持 PrintJob

为啥使用 Win32_PrintJob/C# 得到错误的 N-Up 打印总页数?

ActionScript 3 拖动图层基础知识

ActionScript 3 播放声音基础知识

ActionScript 3 影子基础知识

ActionScript 3 XML基础知识