Hi,
First off I must state that I love the DynAPI and the work that you
have all contributed. This is by far the greatest collection of classes yet
to come together to tie cross browser incompatabilities together in one
package. I have been using the DynAPI for about a month now and have done
some amazing things with the classes and widgets you have provided. One of
my favorites being a verison of brick attack(arkanoid). Well now to my
question before I go off on another tangent. I am using a loadpanel and a
scrollpane to display information on a page I am creating. The loadpanel and
scrollpane work fine in IE but in NS4 the scrollpane does not show up. I am
sure the loadpanel is fine cause I tested it thouroughly before adding the
scrollpane. Yet once I add the scollpane the layer disappears in NS4. Here
is a sample of the code any help would be greatly appreciated...
Kyle
/**
* Display the Page Now
*/
DynAPI.showPage = function()
{
/** Load the DynLayers */
loadLayers()
/** Load the event listeners */
loadEventListeners()
/** Load the mainLayer which is a LoadPanel */
mainLayer = new LoadPanel()
mainLayer.setURL('home.html')
mainLayer.setWidth(280)
mainLayer.moveTo(30,10)
scrollLayer = new ScrollPane(mainLayer) // list will be set as the
content
scrollLayer.moveTo(company.getX()+company.getWidth()+30,
topLayer.getY()+topLayer.getHeight()+10)
scrollLayer.setSize(305,300)
DynAPI.document.addChild(scrollLayer)
}
_______________________________________________
Dynapi-Help mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/dynapi-help