i have a sprite (circle), i made it with actionscript. Here is the pseudocode:
var board:Sprite = new Sprite();
var spDot:Sprite = new Sprite()
spDot.graphics.lineStyle(1,0x0000CC);
spDot.graphics.beginFill(0xFFFFFF); //white;
spDot.graphics.drawCircle(0,0,dZ);
spDot.graphics.endFill();
spDot.name="v";
board.addChild(spDot);
and i have a button "btnA" to change a current sprite color (white) to black.
btnA.addEventListener(MouseEvent.CLICK, changeColor);
function changeColor(evt:MouseEvent){
(board.getChildByName("v") as Sprite).graphics.beginFill(0x000000);
}
but, my problem, it returned error in this part: (board.getChildByName("v") as Sprite).graphics.beginFill(0x000000);
Actually i just guessed to use (board.getChildByName("v") as Sprite).graphics.beginFill(0x000000); to change the color.
Do you have any idea? Thank you!