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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T02:33:59+00:00 2026-05-22T02:33:59+00:00

Hey guys, I need to display a message in a flash project I’m working

  • 0

Hey guys, I need to display a message in a flash project I’m working on. The message needs to be centered on screen, and can only be created using code.

Normally I could just put a dynamic text box on and hide it, but I can’t this time.

Thanks,
Max

  • 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-22T02:34:00+00:00Added an answer on May 22, 2026 at 2:34 am

    I would create a class that has a textfield centered within it. Then create a new instance when you need to display a message and add it to the stage. Here is a very simplified example:

    package
    {
         import flash.display.Sprite;
         import flash.text.TextField;
         import flash.text.TextFieldAutoSize;
    
         public class Message extends Sprite {
    
              private var tf:TextField;
              private var s:Sprite;
    
              public function Message(msg:String) {
                   s = new Sprite();
                   s.graphics.beginFill(0,0);
                   s.graphics.drawRect(0,0,800,600);
                   s.graphics.endFill();
                   addChild(s);
    
                   tf = new TextField();
                   tf.autoSize = TextFieldAutoSize.CENTER;
                   tf.width = 400;
                   tf.text = msg;
                   tf.x = (s.width-tf.textWidth)*0.5;
                   tf.y = (s.height-tf.textHeight)*0.5;
                   addChild(tf);
              }
         }
    }
    

    I would add other functions to this and maybe even add a resize listener to keep it centered. You could also add a few buttons to close the message. The sprite is added only to disable any mouse clicks beneath the message. Does that help?

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

Sidebar

Related Questions

Hey Guys...need help. Working on a project and get this error on the Output
Hey guys I am working on a project where I need to broadcast a
Hey guys, i need to display all 27 states from brazil in a selection
Hey guys, have a little issue i need to figure out. I created a
Hey guys. I need to compile some project. I installed Visual C++ 6.0 +
Hey guys, I need your help. What can be my problem why its giving
Hey guys, I need some help, how can I sum a list from a
Hey guys, I have an XML file I need to parse, but only for
Hey guys I am working on a SW here I am kinda in need
Hey guys, before you guys say anything I have searched and can not find

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.