PDA

View Full Version : how to include htm page in lzx


mohan
07-28-2003, 11:19 PM
Hi,

do anybody have the idea of how to include a htm file inside lzx file.

like i have 1.lzx and 1.htm, i want htm file to be added in the lzx file.

1.lzx

<canvas>
<include href="1.htm" />
</canvas>

i tried by this way but its not working.

antun
07-29-2003, 07:11 AM
There isn't really a way of doing this at all. You can have HTML within a <text> element:


<text>
<p>Here is some <b>text</b>.</p>
</text>


... but you can't just bring in random HTML.

I don't know if this is what you want, but you can have an HTML wrapper page and embed the Laszlo app within it.

-Antun