Creator1326
07-06-2009, 12:46 PM
**Update**
OL 4.4.1 html tag now displays correctly in IE 8 but not Firefox 3.0 or 3.5.1 on PC. All browsers have the same version of Flash and it still works fine on Mac.
This is what I'm using to display HTML pages (some odd 2000+ of them) and it only works in Mac broswers, Firefox 3, 3.5, Safari 3 & 4. As soon as I attempt to view the same code in a PC browser (firefox and IE) the HTML content goes behind the window. I have tried the wmode transparent thing and that doesn't work so please can I get some support on this?
You can view my Laszlo app at: http://laszlo.jdchs.org
<window name="htmlbrowser" width="750" height="${canvas.height - 50}" x="${((canvas.width/2) - 400)}" y="30" visible="false" resizable="true">
<html name="htmlview" width="${parent.width - 20}" height="${parent.height - 74}" xoffset="${parent.x + 7}" y="27" visible="false" />
<method name="closebutton">
htmlview.setAttribute('visible','false');
htmlview.setAttribute('src', null);
this.close();
</method>
<method name="a">
this.open();
htmlview.bringToFront();
htmlview.setAttribute('visible','true');
</method>
<button y="2" x="${parent.width - 78}">Close
<handler name="onclick">
parent.closebutton();
</handler>
</button>
</window>
OL 4.4.1 html tag now displays correctly in IE 8 but not Firefox 3.0 or 3.5.1 on PC. All browsers have the same version of Flash and it still works fine on Mac.
This is what I'm using to display HTML pages (some odd 2000+ of them) and it only works in Mac broswers, Firefox 3, 3.5, Safari 3 & 4. As soon as I attempt to view the same code in a PC browser (firefox and IE) the HTML content goes behind the window. I have tried the wmode transparent thing and that doesn't work so please can I get some support on this?
You can view my Laszlo app at: http://laszlo.jdchs.org
<window name="htmlbrowser" width="750" height="${canvas.height - 50}" x="${((canvas.width/2) - 400)}" y="30" visible="false" resizable="true">
<html name="htmlview" width="${parent.width - 20}" height="${parent.height - 74}" xoffset="${parent.x + 7}" y="27" visible="false" />
<method name="closebutton">
htmlview.setAttribute('visible','false');
htmlview.setAttribute('src', null);
this.close();
</method>
<method name="a">
this.open();
htmlview.bringToFront();
htmlview.setAttribute('visible','true');
</method>
<button y="2" x="${parent.width - 78}">Close
<handler name="onclick">
parent.closebutton();
</handler>
</button>
</window>