In actionscript 3, I have a user enter a number into a field and this field is supposed to be for a cash value. How do I make it so that if for some reason they put say 20.956, it would round up to 20.96?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You could use
It's not mentioned in the documetnation, but i'm fairly sure it rounds rather than floors. Notice that
and invoke it using:
And actually you can use negative numbers for the decimalPlaces as well
|
||||
|
|