Is there anyway to achieve this? Mostly so i can accurately display them without having to resort to scientific notation. Or Heck turning off scientific notation would be nice.
Using Flash 8.
Printable View
Is there anyway to achieve this? Mostly so i can accurately display them without having to resort to scientific notation. Or Heck turning off scientific notation would be nice.
Using Flash 8.
Explain please, so i can help
@angelhdz: Try this in Flash:
Actionscript Code:var num:Number = 123456789123456;
trace(num);
var num:Number = 1234567891234567;
trace(num);
In the second trace, you'll see what he means. I tried searching for a solution, but the answers I found said that it's not possible to achieve what he wants (just the whole number)