movieClip not stopping always looping
问题 I have a class that gets a movieClip and then using addChild adds it to be displayed. Problem is that I cannot play or stop it at all. Basically I can't interact with the movieClip. Here is the code: public function Avatar(movieClip:DisplayObject) //class constructor { ... avatarSprite = MovieClip(movieClip) addChild(avatarSprite); avatarSprite.gotoAndStop(1); //this is not working trace(avatarSprite.currentFrame) //always returns 1 trace(avatarSprite.isPlaying) // returns false ... } When I