I have made a small slide show. It is controlled by a "filmstrip" that I have applied a small script to, to make it horizontally navigateable. I got the code from this tutorial:

http://www.flashkit.com/tutorials/In...-744/index.php

And I can get it to work, sort of. Attached is the sample .fla. When I publish, My mouse is activating the scroller, but not only when it is actually over the scroller. Here is the script:

onClipEvent (mouseMove) {
xmousepos1 = _xmouse;
ymousepos1 = _ymouse;
if (xmousepos1>xmousepos2 && ymousepos1>-98 && ymousepos1<-33) {
_root.scrollclip.nextFrame();
}
if (xmousepos1<xmousepos2 && ymousepos1>-98 && ymousepos1<-33) {
_root.scrollclip.prevFrame();
}
if (ymousepos1<-98 || ymousepos1>-33) {
play();
}
xmousepos2 = _xmouse;
ymousepos2 = _ymouse;
}

Now, the tutorial told me, that I would have to alter the values-98, and -33, to fit my own movie. Problem is, I don't know what these relate to, or what to change them too...Any ideas? I have been trying to bust this out for two days, and just can;t get it right...Please assist!

Q