Flex Control pop-up window drag range sample code _flex

Source: Internet
Author: User
Recently did the project when used in the form of Tiltewindow pop-up window, found that sometimes accidentally drag the window onto the top will not be dragged back, resulting in pop-up windows can not be closed, and later found a good solution, in the pop-up window component initialization method with the following code can be
Copy Code code as follows:

This.addeventlistener (Titlewindowboundsevent.window_move,function ( event:event): void{
Event.target.x = event.target.x < 0? 0:event.target.x;
if (event.target.x + event.target.width > Event.target.parent.width) {
if (Event.target.parent.width- Event.target.width < 0) {
Event.target.x = 0;
}else{
Event.target.x = event.target.parent.width-event.target.width;
}
}
Event.target.y = Event.target.y < 0? 0:event.target.y;

if (event.target.y + event.target.height > Event.target.parent.height) {
if (event.target.parent.height -Event.target.height < 0) {
Event.target.y = 0;
}else{
Event.target.y = event.target.parent.height-event.target.height;
}
}
});

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.