This content has been marked as final.
Show 2 replies
-
1. Re: Variables
Greg Dove Nov 12, 2007 3:41 AM (in response to DanelKirch)You have an example in the current code... using .text for setting the text property of your new textfield. You just need the same property to access the current value of any textfield. Assuming the input field is called numberTextField and is in the same timeline as the script...
nyttpost_movie.nyttpost.text = "<font color='#FF0000' size='"+ numberTextField.text+ "'>";
If both textfields are visible at the same time, then you would probably want to run that code in the onChanged handler for the number input field.
Also note, that displays the html, it doesn't use it for formatting in nyttpost_movie.nyttpost.text . I'm assuming that's what you want. -
2. Re: Variables
DanelKirch Nov 12, 2007 9:43 AM (in response to DanelKirch)Thanx GWD!
it worked out perfectly

