I find one problem, that i cann't put the flash under the popup window. Actually, the flash is always on the top of the popup window,so that it maybe cover some part of the popup window. Here is the code: qx.Class.define("custom.Application", { extend : qx.application.Standalone,
members : { main : function() { this.base(arguments); // flash var movie = qx.bom.Flash.create("Flash.swf"); qx.bom.element.Style.set(movie, "width", "300px"); qx.bom.element.Style.set(movie, "height", "120px"); document.body.appendChild(movie); // popup window var win = new qx.ui.window.Window("Third Window", "icon/16/apps/internet-telephony.png"); win.setLayout(new qx.ui.layout.VBox); win.setMaxWidth(450); win.setMaxHeight(400); win.setAllowMaximize(true); win.open(); this.getRoot().add(win, {left:100, top:250}); } }); Here is the snapshot, the flash covered the popup window. http://www.nabble.com/file/p21172400/flash.jpg -- View this message in context: http://www.nabble.com/how-to-let-the-flash-under-the-popup-window-tp21172400p21172400.html Sent from the qooxdoo-devel mailing list archive at Nabble.com. ------------------------------------------------------------------------------ _______________________________________________ qooxdoo-devel mailing list qooxdoo-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel