question I got lost from this one :

function Thread(dlyr) {
        // Inherit from object. Provides unique ID
        this.DynObject = DynObject
        this.DynObject()
        
        this.setDynLayer(dlyr);
}
Thread.prototype = new DynObject;

now let's say that on a page I have :

thread = new Thread();
        thread.sleep(20);
        thread.run = function() {
                status = "run";
                hover.run();
                circle.run();
                path.run();
        }
        thread.start();
        
        alert(thread.deleteFromParent)

this will alert function(){bla bla bla }

and I cna do the same for each method of DynObject 

now my question is why attaching all those method to something like thread?

it will never use 'em or am I missing something?

ciao
Y

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

Reply via email to