Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7003843
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T21:07:18+00:00 2026-05-27T21:07:18+00:00

I am trying to use a for loop to increment the creation of a

  • 0

I am trying to use a for loop to increment the creation of a movieClip and adds the movie clip to the stage.

Something like this:

        for (var i:int = 0; i<6;i++){
        var ball + i:MovieClip = new Ball();
        addChild(ball + i);
        ball + i.x = 470;
        ball + i.y = 130;
        }

Am I going about this incorrectly?
I am getting the following error:

C:\PATH TO MY /ASFILE.as, Line 64 1086: Syntax error: expecting semicolon before plus.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T21:07:19+00:00Added an answer on May 27, 2026 at 9:07 pm

    I think a good way of doing this is by creating an Array containing the newly created balls.

    var ball:Ball;
    var arrayBalls:Array = new Array();
    
    for (var i:int = 0; i<6;i++)
    {
        ball = new Ball();
        addChild(ball);
    
        ball.x = 470;
        ball.y = 130;
    
        arrayBalls.push(ball);
    }
    

    You store a reference of every ball in the arrayBalls so you don’t have to create a new var each time. By stating ball = new Ball() you’re ‘erasing’ the previous stored value and simply create a new one. Later on you can loop through your Array and do whatever you like with it. Like so

    var ball:Ball;
    for (var i:int = 0; i < arrayBalls.length; i++) 
    {
        ball = arrayBalls[i];
    }
    

    Or something like this

    var ball:Ball = arrayBalls[3];
    

    Hope this is what you were looking for.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to use jQuery's each loop to go through this JSON and add
I'm trying to use Linq to loop through all fonts in the %windir%\Fonts folder
I'm trying to use a foreach loop for an array of objects. Inside of
I'm trying to use the foreach loop in an Ant script but I get
I'm trying to use a cursor loop in MYSQL, but it's not working. I've
I'm trying to use openmp to multithread a loop through std::set. When I write
I'm trying to use a for line in data: loop to assign the first
I'm trying to use a loop to build a variable number of CGMutablePathRef's in
I am trying to use a while loop to loop through some data and
I'm trying to use LayoutInflater in a loop, but each time one of these

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.