Which frame

Which script do I use to detect which frame the movie is at in a MC?

instanceName._currentFrame

it’s a read-only property so you’ll need to use gotoAndPlay(), gotoAndStop(), nextFrame(), etc. to sent the playhead to a particular frame of a particular timeline

Thank you =)