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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T16:35:51+00:00 2026-05-27T16:35:51+00:00

By refresh I am completely disposing it and then introducing it again in the

  • 0

By “refresh” I am completely disposing it and then introducing it again in the application (without closing the application itself – that is). Other than than I think the question is self-explanatory.

Example:
Say I have a component named myComponent. I add that component to the application using MXMl in the standard way <components:myComponent id="myID" />. Say that when a user clicks a button (the button may be in another state), the component with id myID should be garbage-collected and a new instance of it added to the application.

How do I go about doing that? If there are multiple solutions which one is the optimal performance-wise?

I am new to Flash and Flex so excuse me if any incorrect terminology were used.

  • 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-27T16:35:51+00:00Added an answer on May 27, 2026 at 4:35 pm

    Remove all the event listeners from the old component; whatever they are using the removeEventListener method:

    myButton.removeEventListener(someEvent, someEventHandlerMethod);
    

    Then all variables that refer to the component should be set to null. If created in an MXML file, like this:

    <s:Button id="myButton" />
    

    Then all you have to do is set that value to null:

    myButton = null;
    

    Once there are no references to the component, it can safely become eligible for garbage collection.

    If you want to re-created, then just re-created it. You’ll have to re-create it in ActionScript, but the code isn’t hard. Conceptually something like this:

    myButton = new myButton();
    myButton.properties = propertyValues;
    myButton.addEventListener(someEvent, someEventHandlerMethod);
    parentContainer.addChildAt(myButton, whateverPositionYouWantToADdTheComponentAt);
    

    I’m not sure I see the benefit of doing this. I suspect it’ll be much more efficient to tweak the existing button instance in the way you need to as opposed to destroying it and trying to replace it with the exact same thing.

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

Sidebar

Related Questions

I have built an completely AJAX based application which has no page refresh and
I am completely new to javascript programming and I have a question that I
When i refresh my flex application, the page does not hold its state and
I'm trying to refresh a page without sending POST from the previous time. I've
I have a couple of .refresh files that have somehow found their way into
I have heard that thread cannot access controls of other threads directly. So our
I'm trying to write a script that will completely empty a SQL Server database.
I like to think i'm not completely useless at creating MS Access databases, but
I refresh pages by writing window.location = window.location; . However this doesn't work on
When a user hits Refresh on their browser, it reloads the page but keeps

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.