I’ve done a website just as explained in the “Interactive Image Panning” tutorial on the kirupa.com website (http://www.kirupa.com/developer/flash8/interactive_image_pan.htm)
but as my image pans to the right, it continues to pan beyond the edge of the image and begins to show the background color.
How do I make it stop at the edge of my image.
My whole website is contained inside the “bg_mc” Movie Clip and this is the code I have I the frame in which the movie clip is:
this.onMouseMove = function() {
constrainedMove(bg_mc, 4, 1);
};
function constrainedMove(target:MovieClip, speed:Number, dir:Number) {
var mousePercent:Number = _xmouse/Stage.width;
var mSpeed:Number;
if (dir == 0) {
mSpeed = 1-mousePercent;
} else {
mSpeed = mousePercent;
}
target.destX = Math.round(-((target._width-Stage.width)mSpeed));
target.onEnterFrame = function() {
if (target._x == target.destX) {
delete target.onEnterFrame;
} else if (target._x>target.destX) {
target._x -= Math.ceil((target._x-target.destX)(speed/100));
} else if (target._x<target.destX) {
target._x += Math.ceil((target.destX-target._x)*(speed/100));
}
};
}
HELP!!!