Hi,

I'm trying to use two Loadpanel/Scrollpane combinations on one page.
In IE this is not a problem, but NS only loads one. The scrollbar is
visable, but the setURL function (the core functionality for my site)
only works for one loadpanel. Does anybody have ideas?

This is what I do:

DynAPI.onLoad = function() {
   

        lp = new LoadPanel();
        lp.setSize(570,2200);
        
        scrollobj = new ScrollPane(lp)  
        scrollobj.setSize(588,334)
        scrollobj.moveTo(11,73)
        
        DynAPI.document.addChild(scrollobj);

      newsPanel = new LoadPanel();
        newsPanel.setSize(150,2000);
   
        
        newsObj = new ScrollPane(newsPanel);
        newsObj.setSize(179,318);
        newsObj.moveTo(605,73);
        

        DynAPI.document.addChild(newsObj);
        
        
}

In the body of the page I use a link to set the URL. After one's been
set, the other is just 'dead'.

Thanks.


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

Reply via email to