Here is what i what i have so far. I have a movieclip named bananc.swf of a banana cursor. The movie clips (cursor’s) actions are
onClipEvent (load) {
Mouse.hide();
}
onClipEvent (mouseMove) {
setProperty(this, _x, _root._xmouse);
setProperty(this, _y, _root._ymouse);
}
My main movie has a button of a banana, with these actions
on (release) {
loadMovieNum(“bananac.swf”, 1);
}
It works but i want to have it so when i click the banana button again it goes back to normal. What do i need to add to my button? Thanks in advance.