Hi all I am trying to stop/pause my MC when I click on an image.
EG:
on (press){
gotoAndStop._currentframe;
getURL(“image1.jpg”, “_blank”);
}
But when my image loads into the new window and I go back to the main content window on where I clicked the movie has already started playing!
These are my other on states
on (rollOver){
framevar = _currentframe;
gotoAndStop(framevar);
_root.attachMovie(“clickhere”, “clickhere_mc”, 0, {_x:_xmouse, _y:_ymouse});
_root.photomain.stop();
_root.photomain.slideshow.gotoAndStop(“paused”);
}
onClipEvent (enterFrame) {
_root.clickhere_mc._x = _xmouse ;
_root.clickhere_mc._y = _ymouse ;
}
on (rollOut){
clickhere_mc.removeMovieClip();
_root.photomain.play();
_root.clickhere_mc.gotoAndPlay(“finishup”);
_root.photomain.slideshow.gotoAndStop(“playing”);
}
Any help would be great