Returns a reference to the HTMLObject/HTMLEmbed that is created to place the movie in the document. You can use this either with or without the new operator. Note that with any other DOM manipulation, you must wait until the document is finished loading before trying to use this.
Parameter | Type | Description |
---|---|---|
kwArgs | Object | |
node | DOMNode |
See the dojox/embed/Quicktime reference documentation for more information.
Embed a QuickTime movie in a document using the new operator, and get a reference to it.
var movie = new dojox.embed.Quicktime({ path: "path/to/my/movie.mov", width: 400, height: 300 }, myWrapperNode);
Embed a movie in a document without using the new operator.
var movie = dojox.embed.Quicktime({ path: "path/to/my/movie.mov", width: 400, height: 300 }, myWrapperNode);