I don't use the flash colorize function much so this is an example of how to colorize a movieclip with a supplied hexnumber
colorize(0xff0000,my_movieClip);
//will turn my_movieClip bright red.
*/
function colorize(c:Number,mc:MovieClip){ var tf:Transform = new Transform(mc); var color_tf:ColorTransform = new ColorTransform(); color_tf.rgb = c; tf.colorTransform = color_tf; };