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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T03:53:08+00:00 2026-05-11T03:53:08+00:00

What is the best way to determine if a component in Flex/Flash is showing

  • 0

What is the best way to determine if a component in Flex/Flash is showing on the user’s screen? I’m looking for an analog to Java’s Component.isShowing() method.

The show and hide events fire for visibility, and this seems to work for the first descendant of a ViewStack component, but not further down the display tree.

  • 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. 2026-05-11T03:53:08+00:00Added an answer on May 11, 2026 at 3:53 am

    UIComponent.visible is not necessarily valid for children of an object where visible=false. From the docs:

    ‘In either case the children of the object will not emit a show or hide event unless the object has specifically written an implementation to do so.’

    I wrote a sample application that confirms this to be true. What you can do is walk up the display list checking for visible to be false on a parent. Basically ‘visible’ gives false positives but shouldn’t give false negatives. Here is a quick utility I put together:

    package {     import flash.display.DisplayObject;      import mx.core.Application;      public class VisibilityUtils     {         public static function isDisplayObjectVisible(obj : DisplayObject) : Boolean {             if (!obj.visible) return false;             return checkDisplayObjectVisible(obj);         }          private static function checkDisplayObjectVisible(obj : DisplayObject) : Boolean {             if (!obj.parent.visible) return false;             if (obj.parent != null && !(obj.parent is Application))                 return checkDisplayObjectVisible(obj.parent);             else                 return true;         }     } } 

    I haven’t done anything more than trivial tests on this but it should get you started.

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

Sidebar

Related Questions

Possible Duplicate: In Java, what is the best way to determine the size of
Short version: I'm trying to determine the best way to track what the user
What is the best way to determine if the flash ocx is installed in
Looking for the best way to determine if a URI exists in VB.NET without
What's the best way to determine which UITextField triggers the method -(BOOL)textFieldShouldBeginEditing:(UITextField *)textField (or
Possible Duplicate: In Java, what is the best way to determine the size of
Possible Duplicate: In Java, what is the best way to determine the size of
What is the best way to determine if a user has full mailbox rights
Whats the best way to determine if user is on HTTP or HTTPS connection
Possible Duplicates: In Java, what is the best way to determine the size of

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.