I load dynamic text from a .txt file and it works fine. However, I cannot add any tween to the dynamic text field. I tried to use F8 to insert the text field as a symbl and add a tween for the symbol, however, the text cannot be loaded in after I made the change.
Can anyone help me look at this problem? The .fla and text file can be found:
ok … you were right about the symbol. it does need to be changed. sometimes i have problems converting things to symbols from the stage especially variable elements or buttons so i usually just “insert > new symbol” from the start and save myself the hassle.
as far as your dynamic text not loading thats b/c in your first fram you have an onLoad command that tells flash to load the text into the textfield. you’ve told it the file name that you want it to load but when you specified where to load it to on the main frame that was fine. now its in a symbol that symbol has an instance on the main stage so you need to change the path in your code to reflect that move.
i.e. before your code was going to “textBox” now it needs to go to “symbolName.textBox”.
make sense?
once you have it in a symbol and functioning properly you should be able to apply tweens to the symbol.
i would love to look at it but unfortunately i’m at work so i cant see mx files b/c we havent gotten it in yet. all i have is flash 5 here … so if you want you can save it in flash 5 format file > saveAs or i’ll take a look at it when i get home tonight … b/c i have mx at home.
i tried everything i could think of but it doesnt work.
i dont understand why you’re loading a variable and specifying a frame in your code and i also dont understand why you give the load command both on the first frame of the movie and the first frame of the movie clip (symbol)