Hi, FrozenDice wrote: > Is there any way I can find if a Window component is either open or closed? No, there is currently no reliable way to get to know if a window instance is open or closed. When a window instance is closed it is not destroyed, it's just hidden (setting the property "visibility" to false).
But maybe you can check for the visibility property and the mode property (minimized/maximized) together. -> visibility == false && mode == null -> window is closed (property "mode" can have following values "minimized || maximized || null" ) But again, this is not reliable. If you can control all your window instances and can be sure that the user has no other choice to hide the window, maybe this is a solution for you. A status property which returns the current status of window instance has to be implemented in any future release. I'll open a bug report for this, to avoid this feature request gets lost. cheers, Alex ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ qooxdoo-devel mailing list qooxdoo-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel