May I suggest that you replace this:

        if (!this.created){
                window.setTimeout(this+".findForms()",200);
                return null
        }

with this:

        if (!this.created){
                var r = new EventListener(this)
                r.oncreate = function(e) {
                        e.getTarget().findforms()
                }
                this.addEventListener(r)
        }

The only drawback is needing to include the event code, which was not 
needed before.

Sorry I don't see why it doesn't work in NS4. Nice work


_______________________________________________
Dynapi-Dev mailing list
[EMAIL PROTECTED]
http://www.mail-archive.com/dynapi-dev@lists.sourceforge.net/

Reply via email to