摘要:
//显示对象变成彩色 private function applyGrayToColour(child:DisplayObject):void { var matrix:Array = []; matrix = matrix.concat([1,0,0, 0, 0]); // red matrix = matrix.concat([0,1,0, 0, 0]); // green matrix = matrix.concat([0,0,1, 0, 0]); // blue matrix = matrix.concat([0, 0, 0, 1, 0]); // alpha ... 阅读全文