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

Ask A Question

Stats

  • Questions 245k
  • Answers 245k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer {{ theblob|length }} if you're using a Django template (as… May 13, 2026 at 8:12 am
  • Editorial Team
    Editorial Team added an answer You simply use the method method. This will return the… May 13, 2026 at 8:12 am
  • Editorial Team
    Editorial Team added an answer Sounds like you didn't make the subfolder an application in… May 13, 2026 at 8:11 am

Related Questions

This is more of an open question. What is your opinion on query strings
For a website implemented in Django/Python we have the following requirement: On a view
This question is a little involved. I wrote an algorithm for breaking up a
When customers enter email addresses with non-ascii chars like äüö our SMTP rejects to
We are currently going through the long process of writing some coding standards for

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.