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

  • Home
  • SEARCH
  • 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 6038287
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T06:11:51+00:00 2026-05-23T06:11:51+00:00

Hi i made a custom class where i would like to create x instances

  • 0

Hi i made a custom class where i would like to create x instances of a movieclip. But the following doesn’t work:


package {

import flash.display.MovieClip;
public class CustomClass extends MovieClip {

    public function CustomClass(amount:uint) {  
        var Collector:Array = new Array(); 

        //Add and position Tiles to stage.
        for (var i:uint = 1; i <= amount; i++){ 
            var newMovieClip:MovieClip = new MovieClip;
            newMovieClip.y = amount * 10;
            Collector.push(newMovieClip); 
        }
        addChild(Collector);
    }
}

}

I would like to position them on the timeline with

var customClass_mc:CustomClass = new CustomClass(10);
addChild(customClass_mc);

//try to trace the x position of one of the instances. 
trace(customClass_mc.Collector[5].x);

I keep getting the error: Scene 1, Layer ‘Layer 1’, Frame 1, Line 5 1119: Access of possibly undefined property Collector through a reference with static type CustomClass.

  • 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-23T06:11:52+00:00Added an answer on May 23, 2026 at 6:11 am

    I found another answer myself which i think is even better!

    You don’t need the container at all.

    when you use the following

    package {
    
        import flash.display.MovieClip;
        public class CustomClass extends MovieClip {
    
            public function CustomClass(amount:uint) {  
    
                //Add and position Tiles to stage.
                for (var i:uint = 1; i <= amount; i++){ 
                    var newMovieClip:MovieClip = new MovieClip;
                    newMovieClip.y = amount * 10;
                    newMovieClip.name = "clip"+i;
                    addChild(newMovieClip); 
                }
            }
        }
    }
    

    No i can acces the movieclips by using:

    var customClass_mc:CustomClass = new CustomClass(10);
    addChild(customClass_mc);
    
    //try to trace the x position of the fifth instance. 
    trace(customClass_mc.getChildByName("child5").y);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I like to create a file full of custom functions which I have made,
i made a state machine and would like it to take advantage of generics
I want to write a custom class that behaves like dict - so, I
I've successfully made JQuery work with Master Pages, but not JQuery UI.My header in
I have to send/recieve objects (of a custom class made by me) in my
I've made a custom binding class which inherits from Binding: public class MyBinding :
I made a custom TObjectList descendant designed to hold subclasses of a base object
I've made a custom DataGridViewCell that displays a custom control instead of the cell;
I've made a custom control with values for start, current, and end times. The
I have made a custom UserControl i Vb.net (windows application). How can I add

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.