绘制镂空区域
Posted jiangjieqm
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了绘制镂空区域相关的知识,希望对你有一定的参考价值。
var c:Sprite = this["c0"]; c.addEventListener(MouseEvent.CLICK,onClick); var sp:Sprite = new Sprite(); addChild(sp); sp.graphics.beginFill(0x000000,0.5); sp.graphics.drawRect(0,0,200,200); sp.graphics.lineStyle(1,0xffff00); sp.graphics.drawRect(50,50,100,100); sp.graphics.endFill(); function onClick(event:MouseEvent):void { trace(event.target.name); }
以上是关于绘制镂空区域的主要内容,如果未能解决你的问题,请参考以下文章