Well, if it so happens that the mouse is over the slideshow when the popup opens, in some browsers, yes. That's the default behavior of the script - pause onmouseover.
You can disable that by adding an oninit function (highlighted as shown) to the on page new fadeSlideShow declaration:
Code:
<script type="text/javascript">
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [551, 441], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["picture_library/gary/gary_01.jpg"],
["picture_library/gary/ . . .
. . . . ary/gary_17.jpg"],
["picture_library/gary/gary_18.jpg"],
["picture_library/gary/gary_19.jpg"],
["picture_library/gary/gary_20.jpg"] //<--no trailing comma after very last image element!
],
displaymode: {type:'auto', pause:10000, cycles:0, wraparound:false},
persist: true, //remember last viewed slide and recall within same session?
fadeduration: 1000, //transition duration (milliseconds)
descreveal: "ondemand",
togglerid: "",
oninit: function(){
var setting = this.setting;
setting.$wrapperdiv.mouseenter(function(){setting.ismouseover = false;});
setting.ismouseover = false;
}
})
</script>
Don't miss the added comma (red) after the togglerid value.
Bookmarks