Ah yes, another question. Hopefully one that’s not too hard. Wasn’t able to turn up an accurate answer from searching, so here we go:
I have a linked MovieClip in my library which has an associated base class. Naturally, the base class extends MovieClip.
Inside the MovieClip are some animated timeline thingies. At various points in the animation, I’d like to be able to set a variable that belongs to the item’s base class (it’s been declared, eg. private var isPlaying:Boolean = true;
However, it would seem that from the timeline, all references to anything belonging to the class returns null - eg. trace (isPlaying); from the timeline would throw up an 1120: Term is undefined. If I use magic keyword this.isPlaying, I trace and get “undefined”.
I’m probably missing something basic again, so your patience and help is appreciated