Hello,
i’m looking for a way to add an instance to a component from a class…
Something like
class myClass extends MovieClip{
function myClass(){
}
function addComponent(){
attachMovie(thecomponent, "compoInstance", 0, 0, 1);
}
}
but i dont know about the “thecomponent” part… i tried “textInput” but it doesn’t work… any idea?