Is it possible to get the custom cursor MC to act opposite the users actions?
I want it to be opposite the center of the stage, lets say the real mouse cursor is 200px to the RIGHT of the center of the stage, but the custom mouse cursor is 200px to the LEFT… get it? And the same goes for the y coordinates…
I gave it a try, but can’t seem to get it right, math never was my strong side
or you could even make the value a string temporarily to modify it then change it back into a number:
onEnterFrame(){
var mousestring:String = _xmouse;
var mousestringminus:String = "-"+mousestring;
var mousenumberminus:Number = Number(mousestringminus);
}
That’s probably one of the dirtiest hacks i’v come up wih in a while:)