John de la Garza schrieb: > Sebastian Werner wrote: > >> QuickTime is a plugin which is not interoperable in this way with the >> qooxdoo Drag&Drop system. This is mainly a browser plugin integration >> issue and not so such a qooxdoo issue. >> >> >> > > I'm not following fully, I'm really new to javascript, css so I may not > know what I'm talking about. > > Can't I just create a <div> area that contains the plugin and it's > functionality then have that be dragged and dropped? > > In the qooxdoo widget system we abstract from the underlying HTML as much as possible. As you have probably already noticed, the qooxdoo widgets and layout managers are a layer above HTML and CSS. If you want to integrate custom HTML code into a qooxdoo GUI application you will have embed it somehow into a qooxdoo widget. The widget "qx.ui.html.Embed" does exactly that.
You could use it in your application like this: var embed = new qx.ui.embed.Html(); embed.setHtml(_QTGenerate("QT_WriteOBJECT", false, ...)); parent.add(embed); Just make sure that the quicktime JavaScript file is inserted into the index.html. I am not sure how the quicktime plugin handles browser events so you may not be able to drag and drop the video directly. Best Fabian -- Fabian Jakobs JavaScript Framework Developer 1&1 Internet AG Brauerstraße 48 76135 Karlsruhe Amtsgericht Montabaur HRB 6484 Vorstand: Henning Ahlert, Ralph Dommermuth, Matthias Ehrlich, Thomas Gottschlich, Matthias Greve, Robert Hoffmann, Markus Huhn, Oliver Mauss, Achim Weiss Aufsichtsratsvorsitzender: Michael Scheeren ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ qooxdoo-devel mailing list qooxdoo-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel