dojox/embed/Quicktime.js

  • Provides:

    • dojox.embed.Quicktime
  • qtVersion

    • type
      Object
    • summary
  • __def__

    • type
      Object
    • summary
  • keyBase

    • summary
  • keyCount

    • summary
  • getQTMarkup

    • summary
  • kwArgs

    • summary
  • kwArgs.path

    • summary
  • kwArgs.id

    • summary
  • installed

    • summary
  • c

    • summary
  • top

    • summary
  • widthHeight

    • summary
  • dojox.embed.__QTArgs

    • type
      Function
    • parameters:
      • path: (typeof String)
        The URL of the movie to embed.
      • id: (typeof String)
        A unique key that will be used as the id of the created markup.  If you don't
        provide this, a unique key will be generated.
      • width: (typeof Number)
        The width of the embedded movie; the default value is 320px.
      • height: (typeof Number)
        The height of the embedded movie; the default value is 240px
      • params: (typeof Object)
        A set of key/value pairs that you want to define in the resultant markup.
      • redirect: (typeof String)
        A url to redirect the browser to if the current QuickTime version is not supported.
    • source: [view]
        this.id=id;
        this.path=path;
        this.width=width;
        this.height=height;
        this.params=params;
        this.redirect=redirect;
    • summary
  • dojox.embed.__QTArgs.id

    • type
      String?
    • summary
      A unique key that will be used as the id of the created markup.  If you don't
      provide this, a unique key will be generated.
  • dojox.embed.__QTArgs.path

    • type
      String
    • summary
      The URL of the movie to embed.
  • dojox.embed.__QTArgs.width

    • type
      Number?
    • summary
      The width of the embedded movie; the default value is 320px.
  • dojox.embed.__QTArgs.height

    • type
      Number?
    • summary
      The height of the embedded movie; the default value is 240px
  • dojox.embed.__QTArgs.params

    • type
      Object?
    • summary
      A set of key/value pairs that you want to define in the resultant markup.
  • dojox.embed.__QTArgs.redirect

    • type
      String?
    • summary
      A url to redirect the browser to if the current QuickTime version is not supported.
  • dojox.embed.Quicktime

    • type
      Function
    • parameters:
      • kwArgs: (typeof dojox.embed.__QTArgs)
      • node: (typeof DOMNode)
    • source: [view]
        return dojox.embed.Quicktime.place(kwArgs, node); // HTMLObject
    • 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.
    • returns
      HTMLObject
    • example
      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
      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);
  • qtVersion.major

    • summary
  • qtVersion.minor

    • summary
  • qtVersion.rev

    • summary
  • __def__.width

    • summary
  • __def__.height

    • summary
  • __def__.redirect

    • summary
  • dojox.embed.Quicktime.version.major

    • summary
  • dojox.embed.Quicktime.version.minor

    • summary
  • dojox.embed.Quicktime.version.rev

    • summary
  • dojox.embed.Quicktime.version

    • type
      Object
    • summary
  • dojox.embed

    • type
      Object
    • summary
  • dojox

    • type
      Object
    • summary