I've a general question on accessing a MovieClip by using a variable.
Here's a super stripped down version of the code I'm trying to implement:
var mcVar:String = MC1;
addEventListener(Event.ENTER_FRAME, eF);
function eF(e:Event):void{
if (BGMov.[mcVar].currentFrame >= 10){
BGMov.gotoAndStop(2);
}
}
Is this a possibility? Any help is greatly appreciated! Cheers, Simon