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 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 have a custom-made view that extends the View class. I would like 2
I have a custom event I've made which I would like to trigger at
I like to create a file full of custom functions which I have made,
I'm having a bunch of custom-made Reference Classes and would like to write coercion
I've made an custom UILabel class in which i draw a red line at
I've made custom adapter and call notifyDataSetChanged() then data updates. But after call notifyDataSetChanged()
I have made a custom class by inheriting a DateTimePicker and made some methods
I just wrote some code. It has my own custom made class. In that
I made a custom ButtonField class where I have an image as a button.
I'd like to make a custom CellTree that would use checkbox based cells (I

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.