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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T07:07:29+00:00 2026-05-13T07:07:29+00:00

I think there is a simple solution to this question, just not simple enough

  • 0

I think there is a simple solution to this question, just not simple enough for me to find it.

Question:
How do you constrain a TitleWindow in Flex 3 from being dragged off the screen/stage? Is there a way to restrict the TitleWindow to the viewing area?

Example: Let’s say I have an application that take 100% of the screen. Next, I create a TitleWindow via the PopUpManager. I can then proceed to click and hold (drag) that window off the screen, then release the mouse button. That window is now lost off-screen somewhere. Is there a way to keep the window from being dragged beyond the viewing area?

Thanks for the help in advance.

  • 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-13T07:07:30+00:00Added an answer on May 13, 2026 at 7:07 am

    this is a very old post, but here’s another way of doing it:
    Whether you are extending the component or not, in the TitleWindow definition add the following line: move:”doMove(event)”
    Import the Application library (import mx.core.Application;)
    and add the doMove function:

    private function doMove(event:Event):void
    {//keeps TW inside layout
        var appW:Number=Application.application.width;
        var appH:Number=Application.application.height;
        if(this.x+this.width>appW)
        {
            this.x=appW-this.width;
        }
        if(this.x<0)
        {
            this.x=0;
        }
        if(this.y+this.height>appH)
        {
            this.y=appH-this.height;
        }
        if(this.y<0)
        {
            this.y=0;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is an accident and I don't think there's a solution. But I'm asking
There is another recent Project Euler question but I think this is a bit
I think in this case there is no need to declare a public constructor
I think there are a lot of people out there unaware of RFC's (Request
I think there is a wealth of natural language data associated with sites like
I think there must be something subtle going on here that I don't know
Do you think there is a big difference in for...in and for loops? What
I came across an issue that makes me think there is bug in the
Are there any good online resources for how to create, maintain and think about
I think I understand unit testing. But I was wondering: is there a way

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.