Hi I am using the hit test to
assign a movieclip to move
for some weird reason it is not really moving that fast. And it only operates on half the hit area
also frame rate is at 32 so its not an issue with that.
onEnterFrame = function(){
if(Remove_area.hitTest(_ymouse,_xmouse, true) == true){
trace(“hittest true”);
_root.dragger._x = _xmouse;
}
}