Help

Does any one know how i can write text in a dinamic text box with out acully writing text in it, i mean like using action script?

ICED T:tie:

meaning from a textfile or do you mean typing it in your actions panel?

same concept

someVar=“This is my text”

Method 1 =

Give dynamic textbox a var name in the properties panel

Use this on a frame to give it text…

[AS]varNameYouGave = “text you want here”;[/AS]

The double quotes are important because they define a string of text.

Method 2 =

Give your dynamic textbox an instance name in the properties panel

Use this on a frame to give it text…

[AS]textBoxInstanceNameYouGave.text = “text you want”;[/AS]

Method 3 = loading it in

http://www.kirupa.com/developer/mx/dynamic_scroller.htm

thanks guys.

ICED T:tie: