Embed SWF content in HTML

Can embed SWF content in HTML content within an AIR application in the same way as embedding in a browser. To embed SWF content, use object tags or embed tags, or use both tags.

If you have transparency enabled in the NativeWindow object that displays HTML and SWF content, AIR does not display SWF content when the window mode (wmode) used to embed the content is set to the value window. To display SWF content in transparent window HTML pages, set the wmode paramenter to opaque or transparent. The default value of wmode is window, so if you do not specify a value, the content may not be displayed.

<object type="application/x-shockwave-flash" width="100%" height="100%">
	<param name="movie" value="test.swf"></param>
	<param name="wmode" value="opaque"></param>
</param>