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 three functions to releaase when button clicked. They're almost the same, written down one after the other. My problem is that first function (pasted below) works, but when I click second and third button nothing happens. Code for second and third button is the same, but different variables are used.

redStarts.addEventListener(MouseEvent.CLICK, redBars);

function redBars(event:Event)
{
    red1Starts.addEventListener(Event.ENTER_FRAME, r1);
    red2Starts.addEventListener(Event.ENTER_FRAME, r2);
    red3Starts.addEventListener(Event.ENTER_FRAME, r3);

    function r1(event:Event)
    {
            if (red1Starts.y > 200){red1Starts.y -= 4};
    }

    function r2(event:Event)
    {
            if (red2Starts.y > 20){red2Starts.y -= 4};
    }

    function r3(event:Event)
    {
            if (red3Starts.y > 120){red3Starts.y -= 4};
    }
}
share|improve this question

1 Answer

Avoid using nested functions. It seems like that the variables' values you mentioned are persisted in the closures. Try it this way:

redStarts.addEventListener(MouseEvent.CLICK, redBars);

function redBars(event:Event)
{
  red1Starts.addEventListener(Event.ENTER_FRAME, r1);
  red2Starts.addEventListener(Event.ENTER_FRAME, r2);
  red3Starts.addEventListener(Event.ENTER_FRAME, r3);
}

function r1(event:Event)
{
  if (red1Starts.y > 200){red1Starts.y -= 4};
}

function r2(event:Event)
{
  if (red2Starts.y > 20){red2Starts.y -= 4};
}

function r3(event:Event)
{
  if (red3Starts.y > 120){red3Starts.y -= 4};
}
share|improve this answer
Thanks a lot, problem was with adding to stage, some of items was not converted correctly to movieClip and that was the cause of my problem. – anna_wu Jun 10 '12 at 19:47

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.