This content has been marked as final.
Show 1 reply
-
1. Re: Dynamic Text box on timeline.
BrianatArena Jan 13, 2009 1:52 PM (in response to BrianatArena)I found that I can put the AS on the same frame as the Dynamic text and that works, But if I do that for all my text boxes it's going to get messy. Is there a way to put all the AS on frame one that fills in dynamic text boxes later on in the timeline? this is my AS that grabs variables from a php page:
var loader:URLLoader = new URLLoader();
loader.dataFormat = URLLoaderDataFormat.VARIABLES;
loader.addEventListener(Event.COMPLETE, loading);
loader.load(new URLRequest('mypage.php'));
function loading (event:Event):void {
gameTitle.text = loader.data.tvgametitle1
