[f8] onRelease = function help

Hi All,

I can’t seem to figure out how to get this to work when I place the button into an MC… Would it be ._parent.? this didn’t work either…

It’s 3 MC’s off the _root. the buttons work great when they are on the main root.


this.onRelease = function(){
    if (_root.currMovie == undefined) {
        _root.currMovie = "about";
        container.loadMovie("about.swf");
    } else if (_root.currMovie != "about.swf") {
        if (container._currentframe>= container.midframe) {
            _root.currMovie = "about";
            container.play();
        }
    }
}