Hi All,
I’m trying to script a movie clip to have a fixed centerpoint on the stage, but that can be click-dragged by the user to rotate the clip.
I have tried this:
[AS]
on(press){
dorot=true;
}
on(release,releaseOutside){
dorot=false;
}
onClipEvent(load){
dorot=false;
}
onClipEvent(enterFrame){
if (dorot) {
_rotation+=(Math.floor(180*Math.atan2(_ymouse,_xmouse)/Math.PI)+90);
}
}[/AS]
But the effect is not quite right. When the user clicks on part of the movie clip, the clip jumps to another degree of rotation, rather than the user having to drag, as would be the natural motion.
It seems like an easy problem, but I can’t seem to find the right solution. Any ideas would be greatly appreciated.
LS