views:

25

answers:

1

I want to embed static text, basically for a help file. Something like

const help:String = "This is a help line.";

except for it would get it from a file?

const help:String = //retrieve text from a static file
+4  A: 

Here's a quick example:

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());          
    }
}

This will include the file 'textfile.txt' into your SWF at compile-time. If you want to load the text-file from the server at run-time, you should instead use the URLLoader class.

davr