Hey guys
I am making a virtual tour for a website link : www.cactusadvert.be/poivredor/poivredor_fr.htm
Below is the script i am using but there is a problem with the tour.
Arriving at the end of the image the tour continues. See link
Can anyone one help me out with this.
Thanks in advance
///////////////////////////////////////////////////////////////////
onClipEvent (load) {
Xwidth = _root.mc._width;
}
onClipEvent (enterFrame) {
if (hitTest(_root._xmouse, _root._ymouse, false)) {
Xpos = _root.mc.img._x;
k = Xpos-(_root.mc._xmouse/20);
_root.mc.img._x = k;
}
}
///////////////////////////////////////////////////////////////////