Bug when adding a sprite to 1 <s:State>
- by lostincode
I'm working within a skin for a button that has some <s:State> normal over
In the tag, I'm drawing a circle
private var theshape:Sprite;
private function drawShape():void {
theshape = new Sprite();
theshape.graphics.beginFill(0x666666);
theshape.graphics.drawCircle(3,5,10);
theshape.graphics.endFill();
//i then add it to…