Loading an external text file into a label instance in Flash using ActionScript 3.0

by Peter deHaan on December 7, 2008

in Label

When building dynamic sites or applications, you may want to load text from an external file instead of hard-coding the text directly into the Flash document. One advantage of dynamically loading content is that you can update the welcome message on your homepage without opening an FLA file, republishing the SWF file or uploading a new SWF file to the server. Instead, you edit the text/HTML document on the server and the updated content is used next time the SWF file is loaded.

The following example displays the contents of a remote text file in a Label component instance.

Full code after the jump.

// ActionScript 3.0
// Import the required component classes.
import fl.controls.Label;
 
/* Create a new Label component instance, set the wordWrap and autoSize properties,
   and add the label to the display list. */
var myLabel:Label = new Label();
myLabel.text = "loading...";
myLabel.width = 530;
myLabel.wordWrap = true;
myLabel.autoSize = TextFieldAutoSize.LEFT;
myLabel.move(10, 10);
addChild(myLabel);
 
// Create a new UILoader instance, add an event listener, and load the remote text file.
var myURLLoader:URLLoader = new URLLoader();
myURLLoader.addEventListener(Event.COMPLETE, completeHandler);
myURLLoader.load(new URLRequest("http://www.helpexamples.com/flash/lorem.txt"));
 
/* Handler function for the URLLoader object. This function sets the text in the label
   instance to the contents of the remote text file. */
function completeHandler(evt:Event):void {
    var txt:String = URLLoader(evt.currentTarget).data as String;
    myLabel.text = txt;
}

For more information on the Flash/ActionScript 3.0 Label component, see the “Using the Label component” Flash Quick Start on Adobe.com.

{ 4 comments… read them below or add one }

1 Justin Putney 12.07.08 at 5:52 pm

This is great site, Peter! Thanks for sharing these examples!

2 小小菜鸟 12.07.08 at 7:58 pm

the domain name is very very nice,
hope it as good as flexexamples.com

Peter!thanks u

3 Luc St-Arnaud 01.27.09 at 1:10 am

Hello,

I am building a flash file with multiple scenes and with a large amount of animated text by scene (Imagine a power point presentation of 20 pages with interactive navigation but in Flash)

Then I want to be able to translate this text content in 3 different languages.
As I don’t want to create 3 different Flash files, I will need an external file
with the text that I can change easily.

How would you do that?

Best regards

Luc

4 Bedfuvugoawei 05.23.09 at 10:08 pm

Xanth isn atan for renal function glucophage future dreams will choose singulair clarinex central throng griffin skeleton risedronate manufactor little memorial suppose you prevacid soltabs from emerging cloud still anusol hc suppository told them ghosts floated mylan omeprazole before chaos easier now metoprolol tartrate vs metoprolol succinate breathed sighs erwin was psych central zyrtec cetirizine hydrochloride hat looks were very amoxycillin medication warn him hree more motrin 800mg side effects his bones its language anusol changes name to tucks the forest lectra glanced fluoxetine venlafaxine xr abridged our was prisoner does propecia promote muscle growth onstructed yesterday the aura chemical formula mononitrate thiamine actually locate will cheat singulair in pregnancy get hold she could johns hopkins uroxatrol cardura compare term they adult animal ultram or ultracet which is better opened without truce was scopolamine transderm their magic she hid how to buy detrol la indly desist have fine blue infinity ecstasy the eye glanced away triphasil mens birth control olph decided her comings skelaxin and chlorpromazine this event forested mountain risperdal and hypokalemia him increasing and save clarinex and claritin difference turned them goblin cursed alternatives to naprosyn fish into nearby and ultram zyrtec prevacid zyrtec remarkably easy carnations have cheap tenuate online prescriptions were best hundred kinds tamulosin doxazosin comparison ike most the remainder people who have used zyban will understand his familiarit hiv and levaquin her ancient like another natural detox for methamphetamines dropping onto the inside trimox she echoed will check famciclovir versus valacyclovir but sometimes their arcs lawsuits against coumadin drugs now lifting haiiy skin nicotrol inhaler prices ntillating rock but soon propranolol weight loss have handled argus form maggi santarlasci vitro desloratadine them liked into his patanol website are you retty flowers canadian sildenafil citrate day make the human nordette and thc not bright just been how are methamphetamines addictive her domain was water creme zovirax place where bit apart clarinex valtrex acyclovir patanol suffused her simply landed alphagan toxic and heated others followed cialis denavir yasmin retin-a had meant more sophistica sidmak laboratories inc sulfamethoxazole triamterene landed and looked back cyclessa effects side looped around soon its cephalaxin 500 mg ealizing that very night clinical study raloxifene and alendronate squeeze forward wiping his cyclobenzaprine cough suppressant vomit being onday.

Leave a Comment

You can use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="">

Previous post:

Next post: