karthick
karthick

Reputation: 12176

Openlaszlo html tag AIR issue

I just developed a sample openlaszlo application containing HTML tag loading openlaszlo site. And i developed a sample air application having another html tag and i loaded the openlaszlo application through the air application. For some reason i am not able to see the html content of the openlaszlo application.

Has anyone come across this kind of issues?

Upvotes: 1

Views: 127

Answers (1)

Kmeixner
Kmeixner

Reputation: 1752

@karthick In your comments on your question you stated that "The html is behind the SWF": The solution to this problem is to set the Window Mode attribute of the SWF (Flash) object to "transparent":

Example:

a) Direct Flash embed syntax:

<object ...>
...
<param name="wmode" value="transparent"></param>
</object>

b) OpenLaszlo JavaScript embed syntax:

lz.embed.swf({
              url: 'http://www.mysite.com/myapp.lzx.swf10.swf?lzr=swf10', wmode: 'transparent', ... });

Upvotes: 1

Related Questions