Multiple mouse cursor objects - is this possible?
Is it possible to create different mouse cursor objects on separate frames within one scene? I want to have at least 3 different objects to serve as the mouse cursor depending on what is happening in the frame. I want to swap out the "greendot1" for different artwork and I found that swapping out the instance name alone does not work with the active buttons in the movieclip. Can I do this? If so, how..?
stop();
stage.addChild(greendot1);
greendot1.mouseEnabled = false;
greendot1.addEventListener(Event.ENTER_FRAME, fl_CustomMouseCursor_5);
function fl_CustomMouseCursor_5(event:Event)
{
greendot1.x = stage.mouseX;
greendot1.y = stage.mouseY;
}
Mouse.show();
