• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

buttons click

Explorer ,
Jan 20, 2021 Jan 20, 2021

Copy link to clipboard

Copied

why when i am click on button to run function the function run twies?

 

Views

140

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 20, 2021 Jan 20, 2021

Copy link to clipboard

Copied

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jan 20, 2021 Jan 20, 2021

Copy link to clipboard

Copied

Thank you!

 

ishuld do this code for every button? 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jan 20, 2021 Jan 20, 2021

Copy link to clipboard

Copied

LATEST

i tried to do this but it is not working

here is the original cod 

where shuld i can use your cod?

 

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

when click + or - it is counting not ok it is look like repeating the function.

 

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();

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines