AS3 Embed

// 嵌入xml文件
[Embed("config.xml", mimeType="application/octet-stream")]
private var config:Class;

//使用方法
var myXML:XML=new XML(new config);

还有个XML的API,可到这http://www.ericfeminella.com/blog/2008/07/27/xmlasset-api/查看

// 嵌入字体文件
//嵌入外部字体
[Embed(source = "STCAIYUN.TTF", fontName = "华文彩云", mimeType = "application/x-font-truetype")]
private var myFont:Class;

//使用方法
Font.registerFont(myFont);
//txt是舞台上的一个文本框
txt.embedFonts = true;
txt.defaultTextFormat = new TextFormat("华文彩云");


//嵌入系统字体
[Embed(systemFont="STHUPO", fontName="琥珀", mimeType="application/x-font-truetype")]
其他的地方跟嵌入外部字体的方法一样。

你可能感兴趣的:(EMBED)