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 5987073
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T22:45:46+00:00 2026-05-22T22:45:46+00:00

Is there a reason why it can’t work?? Here is a code sample :

  • 0

Is there a reason why it can’t work??

Here is a code sample :

main.as

package{
    import flash.display.MovieClip;
    public class main extends MovieClip{
        public function main(){
            addChild(new Square());
        }
    }
}

Square.as (Which is a linked MovieClip that have a MovieClip called “submc” on its timeline)

package{
    import flash.display.MovieClip;
    public class Square extends SuperSquare{
        public var submc:MovieClip;
        public function Square(){
            super(submc, 1234);
            trace("submc : " + submc);
        }
    }
}

SuperSquare.as

package{
    import flash.display.MovieClip;
    public class SuperSquare extends MovieClip{
        public function SuperSquare(_p:MovieClip, _value:Number){
                trace("_p : " + _p + " _value : " + _value);
        }
    }
}

When running this code, it traces :

_p : null _value : 1234
submc : [object MovieClip]

The “submc” property can’t get through Square super constructor. I probably missed something? Any advice?

Thanks

  • 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-22T22:45:46+00:00Added an answer on May 22, 2026 at 10:45 pm

    Old Answer
    You have to initialize submc. The body of the Square class should look like this:

    public var submc:MovieClip;
    public function Square()
    {
         submc = new MovieClip();
         super(submc, 1234);
         trace("submc : " + submc);
    }
    

    The variable submc is null until you either initialize it or make it reference some other instantiated object.

    New Answer
    If you are referencing elements on the timeline you may need to wait until the parent elements have been added to the stage before you reference nested elements. To do this you can either add an event listener for ENTER_FRAME or ADDED_TO_STAGE.

    package{
        import flash.display.MovieClip;
        public class Square extends SuperSquare
        {
            public var submc:MovieClip;
            public function Square()
            {    
                // -- either one of these should work
                addEventListener( Event.ADDED_TO_STAGE, onAdded );
                addEventListener( Event.ENTER_FRAME, validateStage );
            }
        }
    
        public function onAdded( event:Event ):void 
        {
             // -- creates a problem because you can only call a super constructor in a constructor
             // super(submc, 1234);
             trace("submc : " + submc);
        }
    
        public function validateStage( event:Event ):void 
        {
             if( !stage ) return;
             if( stage.stageWidth == 0 ) return;
    
             // -- ok to reference stage elements now
    
             removeEventListener( Event.ENTER_FRAME, validateStage );
        }
    }
    

    I’m not completely sure that this is your problem. However, I’ve seen similar problems with referencing stage elements too soon.

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

Sidebar

Related Questions

Is there a specific reason that the EF requires new data providers and can't
If so, can the image be animated? Is there a good reason not to
Is there any reason something like this would not work? This is the logic
Is there a reason why most function definition in device driver in linux code
Possible Duplicate: Is there a reason you can not define the access modifier on
Is there an intrinsic reason why I can't, in routes.php, route a user based
I can't seem to set a ContentTemplate for a ComboBoxItem. There reason I'm trying
For some reason I can see docs only for .net libraries. Is there a
Is there any reason why I can't use preg_replace inside a static function? when
There are some breakpoints in my project that for some reason can not be

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.