In my code, I dynamically attach objects that extend MovieClip similar to the following code:
myMovieClipObject.attachMovie(“ObjectA”, “ObjectB”+ i,200+i);
ObjectA is an object in the library. Its linkage is to an AS 2.0 Class, we’ll call it myClass defined as follows:
class myClass extends MovieClip {
var myProperty:String = “Some Value”;
};
Later in my code, I can do all sorts of things to, say, ObjectB10, but the following is undefined:
ObjectB10.myProperty;
can anyone tell me why?