I hae gone through the tutorial on how to use a mouse click to ease a movie clip and there is something I can’t quite figure out.
If I want to have the clip start at a different location, I need to change the:
onClipEvent (load) {
_x = 0;
_y = 0;
speed = 5;
}
When I change this to where I want to put the movie clip, it still doesn’t place it in the right location.
Another thing…if I want the movement to be associated with a button, do I place the:
onClipEvent (mouseDown) {
endX = _root._xmouse;
endY = _root._ymouse;
}
on the button specifying onClipEvent(slider_MC.mouseDown) {}
onClipEvent (enterFrame) {
Thanks! Sorry if this is a little confusing, I will try to post a copy of the fla I am working on if anyone needs to see what I am trying to do.