Adding amounts in edge animate
i'm looking create set of buttons add numbers together.
for example: if click button adds number 7 box, if click button adds 4 same box making 11. want set variable saying if box equals 11 play animation.
is doable in edge animate?
yes, it's possible. can grab value text box using jquery html() parameter. let's have text box on stage called "mytextbox":
var text = sym.$("mytextbox").html();
text = text + 4;
sym.$("mytextbox").html(text);
if (text == 11) {
sym.play();
}
-elaine
More discussions in Edge Animate CC
adobe
Comments
Post a Comment