I have a nested movie that is called by the following function.
function test(){
_root.createEmptyMovieClip("container",25);
loadMovie("images/5_28.swf", "container");
container._x=15;
container._y = 95;
}
test();
On the base movie I have three control buttons for play, pause, and rewind.
The play and the rewind work like a gem on the nested movie, but the pause button does not work when selected and the nested movie just keeps playing. The following is the code that is used.
on (release) {
stop();
}
on (release) {
this._parent.stop();
this._parent.container.stop();
}
Does any one have a suggestion on how to pause the nested movie ???
function test(){
_root.createEmptyMovieClip("container",25);
loadMovie("images/5_28.swf", "container");
container._x=15;
container._y = 95;
}
test();
On the base movie I have three control buttons for play, pause, and rewind.
The play and the rewind work like a gem on the nested movie, but the pause button does not work when selected and the nested movie just keeps playing. The following is the code that is used.
on (release) {
stop();
}
on (release) {
this._parent.stop();
this._parent.container.stop();
}
Does any one have a suggestion on how to pause the nested movie ???