Answered
How to load additional external texts?
This is my external texts loading:
//Loading external texts
var slideXTween:Tween;
var txtAlphaTween:Tween;
var txtNextText:Tween;
var txtContainer:Sprite;
var txtField:TextField = new TextField();
var textRequest:URLRequest=new URLRequest("happyHoliday.txt");
var textLoad:URLLoader = new URLLoader();
var txtFormat:TextFormat = new TextFormat();
//end of loading external texts
How do I utilize this same code for loading a second .txt file after the first one is loaded and the motion tween is completed? I don't want to rewrite this whole code for additional files to be loaded.
Thanks for any help.