元件变色 change movieclip's color

阅读 121

2023-05-12


// This line defines a variable of type ColorTransform and naming it colorTransform 
var colorTransform:ColorTransform = new ColorTransform();

color_btn.addEventListener(MouseEvent.CLICK, paint);

// here is what happens when the button is clicked 
function paint(event:Event):void
{
	colorTransform.color = 0xFF0000;
	test_mc.transform.colorTransform = colorTransform;
}

 

 

 

视频讲解

 


 

精彩评论(0)

0 0 举报