This Should Be Easy

This should be so easy :frowning:
What the hell is wrong with me? I’m starting to question my sanity…

Anyway, I’m using loadMovie() and then trying to go to a specific frame within it:

_root.loadMusic.loadMovie("song.swf");

Then there’s a “Play” and “Stop” button. Let’s look at the Stop button. (Assume the above song has fully loaded.) Here’s my actionscript:

// songClip is a movie clip within song.swf

on(release) {
     _root.loadMusic.songClip.gotoAndStop(_currentFrame);
}

When I replace “currentFrame” with a number, say 10, it doesn’t work either. This should be so simple but I just don’t get it.