airopenlaszlolzx

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?


Solution

  • @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', ... });