Hi,

Been playing around with DynAPI (ver. 2.53) and altered the standard
example dynapi.gui.loadpanel.html to create 2 LoadPanels. Works fine
on IE5, but doesn't display the second LoadPanel at all with Netscape
4.75. Here's the main change with the old loadpanel example:

DynAPI.onLoad=function() {
        lp = new LoadPanel('dynapi.gui.loadpanel-file2.html');
        lp.setSize(250,50);
        lp.moveTo(200,100);
        lp.setBgColor('yellow');
        
        lp2 = new LoadPanel('dynapi.gui.loadpanel-file1.html');
        lp2.setSize(250,50);
        lp2.moveTo(470,100);
        lp2.setBgColor('blue');
        
        DynAPI.document.addChild(lp);
        DynAPI.document.addChild(lp2);
}


Any ideas on why Netscape fails to display lp2? 

Thanks,
Chris Winkler

_______________________________________________
Dynapi-Help mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/dynapi-help

Reply via email to