Just some info

So what does the prototype mean when it’s used in

LoadmovieClip.prototype.

I had seen in the code of a couple examples I downloaded and just wanted to know what it’s importance was.

here is a little thing by Pom:

http://www.kirupa.com/developer/actionscript/tricks/prototypes.asp

Ya I really need to try to understand action script more, that made almost no sence at all, but thanks for pointing it out.:tie:

Thanks

LoadmovieClip.prototype doesn’t exist by the way. The usual construction is:

YourClass.prototype.yourMethod = function(args){}

pom :phil: