What is the techinical reason why we need DynAPI to display a layer? I 
throught DynAPI was only to handle the library.

For example, why do we write like this

...
DynAPI.onLoad = function()
{
        myLayer = new DynLayer()
        myLayer.setSize(100,100)
        myLayer.setBgColor('#c0c0c0')
        myLayer.moveTo(100,100)
        DynAPI.document.addChild(myLayer)
}
...


Instead of

...
myLayer = new DynLayer()
myLayer.setSize(100,100)
myLayer.setBgColor('#c0c0c0')
myLayer.moveTo(100,100)
...

_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


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

Reply via email to