dojox/embed/Quicktime (version 1.10)

Summary

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.

Usage

Quicktime(kwArgs,node);
Parameter Type Description
kwArgs Object
node DOMNode
Returns:undefined

See the dojox/embed/Quicktime reference documentation for more information.

Examples

Example 1

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);

Example 2

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);

Property Summary

Method Summary

Properties

initialized
Defined by: dojox/embed/Quicktime

Methods

Error in the documentation? Can’t find what you are looking for? Let us know!