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

How to create a loop in this case?

Guest
Jun 25, 2013 Jun 25, 2013

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


TOPICS
ActionScript
280
Translate
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 ,
Jun 25, 2013 Jun 25, 2013
LATEST

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.

Translate
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