This content has been marked as final.
Show 4 replies
-
1. Re: Can I take some of your time
DazFaz Oct 17, 2006 4:56 AM (in response to fastRider)This might be a little over teh top for a solution but its a good place to start. You really dont need all of this code but maybe you can break it down a little further. -
2. Re: Can I take some of your time
Supermercado_Gato-eP5SVb Oct 17, 2006 5:55 AM (in response to fastRider)I have the feeling it's just a problem with targeting the path to the text fields. Assuming your text boxes and button as on the same time line, try this...
-
3. Re: Can I take some of your time
AnandMX Oct 17, 2006 6:00 AM (in response to fastRider)on(press)
{
//number may clash with Number class
var num:Number = parseInt(this._parent.txt_box.text); //txt_box is the name I have assigned to the text box cause i read how to do it somewhere!
this._parent.num_out.text = num; // num_out is another dynamic box name....
} -
4. Re: Can I take some of your time
fastRider Oct 17, 2006 6:10 AM (in response to fastRider)Thanks for the replies........... They helped a lot, as I thought.. I named the text field a different name and was using in the code with a different name.. Thank you all people, I actually now think that I can try the deafult object 'this.' and _parent which were too vauge before but now within grasp.... Thanks Once for you time and Patience! :-)