I have a simple script that fades a MC in or out.
All I want to do is decrease the alpha gradually by .1.
But it seems to be decreasing by many decimal places, rather than just -.1;

Is there a way to use only whole numbers like .8 as opposed to .723342?

Thanks, all.

Example:
var fade:Number = -.1;
box_mc.alpha += fade;