我想嵌入静态文本,主要用于帮助文件。像
这样的东西const help:String = "This is a help line.";
除了它会从文件中获取它?
const help:String = //retrieve text from a static file
答案 0 :(得分:10)
这是一个简单的例子:
public class EmbedText extends Sprite
{
[Embed(source="textfile.txt",mimeType="application/octet-stream")]
var myText:Class;
public function EmbedText ()
{
var txt:ByteArray = new myText() as ByteArray;
trace(txt.toString());
}
}
这将在编译时将文件'textfile.txt'包含到SWF中。如果要在运行时从服务器加载文本文件,则应使用URLLoader类。