I am using FlexMDI and would like to know when a window has been dragged to a new position so I can save the position.
I am adding windows on the fly with... var newWindow:MDIWindow = new MDIWindow(); MDIManager.global.add(newWindow); I have tried... newWindow.addEventListener(MDIWindowEvent.DRAG_END, this.windowDragEndEventHandler); MDIManager.global.addEventListener(MDIManagerEvent.WINDOW_DRAG_END, this.windowDragEndEventHandler); but these do not fire. Anybody have any ideas? If this is not the right forum for these questions, please let me know where to post this. I have checked and cannot find a forum directly related to FlexMDI.

