This documentation is for the old version. Go to the latest Upload Suite docs

flashControl.wmode Property

Gets or sets the window mode of the Flash control for transparency, layering, and positioning in the browser.

Syntax

JavaScript Initialize
$au.imageUploaderFlash({
    flashControl: {
        //...other params...
        wmode: "window",
        //...other params...
    }
})
Get/Set Value at Runtime
$au.imageUploaderFlash('uploaderID').flashControl().wmode(value);
value = $au.imageUploaderFlash('uploaderID').flashControl().wmode();

Property Value

Type: String

The window mode.

Default value is "window".

Remarks

The following values are possible:

  • window - movie plays in its own rectangular window on a web page.
  • opaque - the movie hides everything on the page behind it.
  • transparent - the background of the HTML page shows through all transparent portions of the movie. This option can slow animation performance.

See Also

Reference