Copy link to clipboard
Copied
Hi! I'm trying to use the if statement, but the code is only read once.
How do I get this code to be read several times?
For example, when the car passes the detector the number goes to 10.
So the code does not detect the if statement because the code is only read once.
Code:
var score: Number = 9;
if (score == 10)
{
gotoAndPlay (3);
}
Copy link to clipboard
Copied
you could put that code in a function and use a loop (like enterframe to call it) or, even more efficent, call the function whenever score could be changed.
Find more inspiration, events, and resources on the new Adobe Community
Explore Now