Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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!

share|improve this question

1 Answer

up vote 0 down vote accepted

This easiest way would be clearing the graphics data and redraw into the graphics object.

function drawCircle(sprite:Sprite, radius:Number = 40, fillColor:int = 0):Sprite
{
  if (!sprite) return null;

  const g:Graphics = sprite.graphics;

  g.clear();
  g.lineStyle(1, 0x0000CC);   
  g.beginFill(fillColor);
  g.drawCircle(0, 0, radius);
  g.endFill();

  return sprite;
}

Also, i highly recommend not to use implicit calls when you need expect a certain type:

function changeColor(evt:MouseEvent)
{
  // hides the fact, that you're having an instance of am unexpected type
  (board.getChildByName("v") as Sprite).graphics.beginFill(0x000000);
}

Will lead to a 1009/null pointer although you have a valid reference.

function changeColor(evt:MouseEvent)
{
  // fails fast - for example when you change from sprite to bitmap.
  Sprite(board.getChildByName("v")).graphics.beginFill(0x000000);
}

Failing fast is in this case the suitable way to cast.

share|improve this answer
!! ahh Thank you very much!! i will try your suggest now... – RizukiHiroto Jan 4 at 17:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.