Tag Archive for 'ispopup'

10
Sep

Creating an undraggable Alert control in Flex (redux)

In a previous example, Creating an undraggable Alert control in Flex, we saw how you could create a Flex Alert control that isn’t draggable by listening for the mouseDown event and calling the stopImmediatePropagation() method in the event handler.

The following example shows how you can create an undraggable Flex Alert control by setting the Boolean isPopUp property.

Full code after the jump.

Continue reading ‘Creating an undraggable Alert control in Flex (redux)’

16
Aug

Creating an undraggable TitleWindow container in Flex

In a previous example, “Creating an undraggable Alert control in Flex”, we saw how you could create a Flex Alert control that isn’t draggable by listening for the mouseDown event and calling the stopImmediatePropagation() method in the event handler.

The following examples show how you can create an undraggable TitleWindow container by setting the isPopUp property to false on the TitleWindow instance.

Full code after the jump.

Continue reading ‘Creating an undraggable TitleWindow container in Flex’