Those are both a little more complicated. For the mouseout, use:
Code:
onmouseout="mygallery.setting.displaymode.type='auto'; mygallery.showslide('next');"
Like, using my previous example:
HTML Code:
<p onmouseover="mygallery.navigate(3);" onmouseout="mygallery.setting.displaymode.type='auto'; mygallery.showslide('next');">Some text here that relates to the fourth slide.</p>
The other thing, about the description, I believe depends a bit upon what sort of descreveal you are using here:
Code:
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [250, 180], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["http://i26.tinypic.com/11l7ls0.jpg", "", "", "Nothing beats relaxing next to the pool when the weather is hot."],
["http://i29.tinypic.com/xp3hns.jpg", "http://en.wikipedia.org/wiki/Cave", "_new", "Some day I'd like to explore these caves!"],
["http://i30.tinypic.com/531q3n.jpg"],
["http://i31.tinypic.com/119w28m.jpg", "", "", "What a beautiful scene with everything changing colors."] //<--no trailing comma after very last image element!
],
displaymode: {type:'auto', pause:2500, cycles:0, wraparound:false},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 500, //transition duration (milliseconds)
descreveal: "ondemand",
togglerid: ""
})
Is it "ondemand", "always", or "peekaboo"? Obviously it's not an issue at all if you use "never".
I also believe that the author has worked this out, or was about to in another thread for at least one of those three descreveal types. I'll have a look and see if he did. No sense duplicating the effort.
Bookmarks