Skip to main content
Known Participant
January 7, 2021
Question

why the function repeat

  • January 7, 2021
  • 1 reply
  • 319 views

i wote function in frame 2 the gotoAndPlay (3)

when i returen from frame 3 to frame 2 goandPlay(2)

and run function. the function run twies.

do you know why or this is abug? 

 

 

    This topic has been closed for replies.

    1 reply

    Legend
    January 7, 2021

    You're expecting us to debug your code with nothing but vague explanations of what it's doing?

    Yigal0D4BAuthor
    Known Participant
    January 10, 2021

    sorry

    in this link you can see asample of counting 

    http://hebrewgames.org/test/test1.html

     

    when click + or _ it is counting ok

    when click NEXT PAGE

    and the click PREVPAGE

    when click + or _ it is counting not ok

     

    code:

    frame 0:

    this.stop();

    this.counter=0;

     

    this.plus_bt.addEventListener("click", countUp.bind(this));

    function countUp()
    {
    this.counter= this.counter+1;
    this.countTx.text=this.counter;
    }

     

    this.minus_bt.addEventListener("click", countDown.bind(this));

    function countDown()
    {
    this.counter= this.counter-1;
    if (this.counter<0){this.counter=0}
    this.countTx.text=this.counter;
    }

    this.nextPage_bt.addEventListener("click", nextP.bind(this));

    function nextP()
    {
    this.gotoAndPlay(1);
    }


    this.prevPage_bt.addEventListener("click", prevP.bind(this));

    function prevP()
    {
    this.gotoAndPlay(0);
    }

     

     

    frame1:

    this.stop();