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

The Archive Base Latest Questions

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

I have a TextField inside a Sprite and I always want the alpha of

  • 0

I have a TextField inside a Sprite and I always want the alpha of the TextField to be equal to the alpha of the sprite. How can i subscribe to the changes made in the Sprite? I guess i need to fire a PropertychangeEvent some how, but I can’t see that sprite supports this out of the box?

class TextWidget extends Sprite{  
  private var textfield:TextField;    
  public function TextWidget(){  
    textfield = new TextField();  
    textfield.alpha = this.alpha;  //does'n help  
    addChild(textField);  
??  
  this.addEventListener(PropertyChangeEvent.PROPERTY_CHANGE, updateAlpha);  
??  
  }
  private function updateAlpha(event:PropertychangeEvent):void{  
    textfield.alpha = this.alpha;  
  }  
}  
  • 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-11T16:27:08+00:00Added an answer on May 11, 2026 at 4:27 pm

    One way would be to create a derived class of the sprite and override the alpha property

    /**
     * ...
     * @author Andrew Rea
     */
    public class CustomSprite extends Sprite
    {
    
        public static const ALPHA_CHANGED:String = "ALPHA_CHANGED";
    
        public function CustomSprite() 
        {
    
        }
    
        override public function get alpha():Number { return super.alpha; }
    
        override public function set alpha(value:Number):void 
        {
            super.alpha = value;
    
            dispatchEvent(new Event(CustomSprite.ALPHA_CHANGED));
        }
    }
    

    Another way would simply be to set the textfield alpha whenever the alpha setter of the parent sprite is hit, as shown above just without the event.

    Andrew

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

Sidebar

Related Questions

I have a textfield where the user can type what ever he want into
i have textfield inside html table..i want after i type something like name in
dear all..i have a textfield. i want after i have typed identity number inside
I have an UITextField inside an UITableViewCell. I want the textField to return but
I have a textfield which displays a result but I don't want it to
I have a textField on my stage named 'adBuy', which when clicked I want
i have one textfield and one show button.. i want after i have been
So I have a MovieClip asset with a dynamic textfield sitting inside of it.
I have been typing a string inside a textfield, KD-G435MUN2D . I already use
I have a flowlayout panel which has a textfield inside. Although the textfield is

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.