Hi!
I'm using the loadpanel widget to lod content in layers.
No problems on IE... it works fine.
But on NS, it loads only the first file and display it using my window widget and stops before the second window...
Bellow is the code I used, do you see any things ???

Note that : ContentLayer is a simple child dynlayer of my window.
Exthtml is an object containing the src of the file to load.
So this function is called each time I wand to load content in a window.

function LoadExtHTML(exthtml,Window)
{
 Window.ContentLayer.lp = new LoadPanel(exthtml.getAttribute('src'));
 Window.ContentLayer.lp.setAutoResizeHeight(false);
 Window.ContentLayer.lp.setSize(Window.ContentLayer.w,Window.ContentLayer.h);
 Window.ContentLayer.lp.moveTo(0,0);
 Window.ContentLayer.addChild(Window.ContentLayer.lp);
}
 

Thanks !
Nicolas
--
----------------------------------------
Nicolas MASSART
mail : [EMAIL PROTECTED]

Coleebris
12, av de Versailles 75016 PARIS
web : http://www.coleebris.com/
tel : 01 40 50 60 47
fax : 01 40 50 67 66
----------------------------------------
 

Reply via email to