I found this old text script but I don't know where I can change the text in the fla- please see attached..
Can anyone help? I think it should be easy to locate but I can't find it!
Printable View
I found this old text script but I don't know where I can change the text in the fla- please see attached..
Can anyone help? I think it should be easy to locate but I can't find it!
In your actions on the first frame:
PHP Code:zz.text = "This is my new text";
That's great. I appreciate your answer. Can you tell me how to make a new line though? e.g. This is my new text
This is another line
and so on..
Thanks again.
For plain text the new line character is "\n".
PHP Code:zz.text = "This is my new text\n";
zz.text += "This is another line\n";
I tried that- please find attached fla but the text stays on the same line? Have I done something wrong?
text.multiline = true;
text.wordWrap = true;
put that before your text,,,,,, atleast i think thats the right function
I dont think you need both of those,,, just one, I dont remember which...