Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I embed static text in actionscript 3?

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
like image 249
Timmy Avatar asked Dec 29 '22 01:12

Timmy


1 Answers

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.

like image 137
davr Avatar answered Jan 06 '23 01:01

davr