How to substract .1 alpha from a hex color? For example:
var color:uint = 0xffff0000; // 100% opaque red
var fade:Number = .1; // fade 10% alpha
while (?) {// conditional to check if the alpha is grater than 0
color -= ? // some code to substract 'fade' from the alpha of the 'color'
}