Hi guys,
quick question.
I know how to change the look of the mouse cursor in flash.
(create a movie clip with the desired pointer in it. Assign this code to it:
onClipEvent (enterFrame) {
setProperty(this, _x, _root._xmouse);
setProperty(this, _y, _root._ymouse);
Mouse.hide();
}
What I want to be able to do is only have this custom mouse cursor become active in certain areas of the flash file. I.e only active in the top half yet not active in the bottom half.
I guess in the code, you have to constrain/limit the co-ordinates of the mouse pointer, but im not sure of the code.
Anyway, any help would be appreciated.
Enforcer 73