| | | DLMAES |  |
| Posted: Tue Sep 02, 2008 1:33 am Post subject: Re: new in actionscript |  |
Do you have a set value for every time the button is clicked? You will need to make the text field a dynamic text field, give it an instance name and then assign the button a function to change the dynamic text field. The actionscript may look something like the following:
buttonName.onRelease = function(){ dynamicTextName.text = "enter text here"; } |
|