首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 平面设计 > 图形图像 >

flex作图不规则形状图形,并填充背景色

2012-11-25 
flex绘制不规则形状图形,并填充背景色?protected function button1_clickHandler(event:MouseEvent):void{

flex绘制不规则形状图形,并填充背景色

?

protected function button1_clickHandler(event:MouseEvent):void

{

var gra:Graphics = drawCenter.graphics;

drawCenter.graphics.beginFill(0x000000);

drawCenter.graphics.lineStyle(5, 0xBBBBBB);

gra.moveTo(50,50);

gra.lineTo(500,500);?

gra.lineTo(200,400);

gra.lineTo(50,200);

gra.lineTo(50,50);

drawCenter.graphics.endFill();

}

?

但是要注意graphics对应的UI的要有背景色设置或者backgroundAlpha设置,如果没有此属性,则可用Canvas控件

热点排行