Is there a way to stop the playing of your Flash movie using JavaScript? Once you know what it is, you can then use the onChange event handler of the script to call that whenever the user changes slide:
Code:
onChange: function(previndex, curindex){
if (previndex==curindex) //if two indices point to the same slide (page first loads)
return //do nothing
else if (previndex==1)
videoplayer.stop("cats")
else if (previndex==2)
videoplayer.stop("dogs")
else if (previndex==3)
videoplayer.stop("myvacation")
}
Bookmarks