I’ve this problem with rounding up. My problem is more
complex than i describe here but I’m sure i can figure
out the rest myself once I got this working. I want flash
to round up with two decimals at all time.
for example:
x = 123.456789
getal = (Math.round (100*x))/100;
Now getal returns 123.46 and thats perfect.
But if x = 26 getal returns 26 while I want
it to return 26.00
How can I achieve this?
Thanx in advance.
Nasier