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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T23:29:39+00:00 2026-05-16T23:29:39+00:00

I’m making a rather large flash project and so I’m concerned about memory usage.

  • 0

I’m making a rather large flash project and so I’m concerned about memory usage. At the end of each section of the application I remove the overarching parent element that holds the content. Although this remove the parent, does this also free up the memory for each of the children contained within this, or should I run an iteration to remove those prior to removing the parent?

I’ll give a little more explanation in-case I’m not expressing what I want:

addChild(movie1);
movie1.addChild(movie2);
movie1.addChild(movie3);

By using this code:

removeChild(movie1);

Does it remove movie2 and movie3 from memory or are they still stored, just unlinked?

  • 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-16T23:29:40+00:00Added an answer on May 16, 2026 at 11:29 pm

    Well, nothing is removed from memory so far , it really depends on how movie1 is referenced. Let’s say that later in the application you want to add movie1 again, you should find that movie1 is not only still here but it also contains movie2 & movie3.

    var movie1:MovieClip;
    
    whatever();
    anotherMethod();
    
    function whatever():void
    {
        movie1 = new MovieClip();
        var movie2:MovieClip = new MovieClip();
        var movie3:MovieClip = new MovieClip();
        movie1.addChild(movie2);
        movie1.addChild(movie3);
        addChild(movie1);
    
        whateverElse();
    }
    
    function whateverElse():void
    { 
        //here, nothing is garbage collected, movie1 exists outside
        //the scope of this function
        removeChild(movie1);
    
        //now you can
        tryThis();
    
        //but if you do this you're effectively killing movie2 & movie3 , since
        //they're not referenced anywhere else.
        removeChild(movie1);
        movie1 = null;
    
        //this is going to throw an error , movie1's gone!
        tryThis();
    }
    
    function tryThis():void
    {
        //yes ,it's still here with all its content
        addChild(movie1);
    }
    
    function anotherMethod():void
    {
        var movieN:MovieClip = new MovieClip();
        var movie2:MovieClip = new MovieClip();
        var movie3:MovieClip = new MovieClip();
        movieN.addChild(movie2);
        movieN.addChild(movie3);
    
        // do all you need to do... 
        // then
        removeChild( movieN);
        getOut();
    }
    
    function getOut():void
    {
       //life goes on without movieN, movie2 & movie3
       //waiting to be garbage collected
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
Basically, what I'm trying to create is a page of div tags, each has
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I am reading a book about Javascript and jQuery and using one of the
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I'm making a simple page using Google Maps API 3. My first. One marker
I don't have much knowledge about the IPv6 protocol, so sorry if the question
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and

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.