Please help clever flash people.....! Using flash 5, I need to create a function that will swap the usual mouse cursor for a moviclip "/target" that I have created. Has it got anything to do with the hideMouseO function???
Regards, Greg
Printable View
Please help clever flash people.....! Using flash 5, I need to create a function that will swap the usual mouse cursor for a moviclip "/target" that I have created. Has it got anything to do with the hideMouseO function???
Regards, Greg
Create a movie clip with your cursor in it. In this movie clip's object actions, add the following code:
Code:onClipEvent (load) {
Mouse.hide();
this.startDrag(true);
updateAfterEvent();
}
Nice one!
Now, how about attaching an "on(press)" collision detection routine to said mouse operated movieclip. (It's a target...)
Greg