Answered
Convert String to Number
I want to convert a textbox value to numric value and i use a code like this :
- var n:Number = Number(myTextbox.text);
when i trace the variable (n) it gives me 0. although when i trace myTextbox.text , it gives me the right value.
why ?