I have the code below adding a movie clip to my stage and setting the buttonMode to true. I can see the cursor hand in Chrome but not in Firefox. I do not have any text inside of this movie clip. Any ideas?
//get the objects
var mcLogo:mc_logo_still = new mc_logo_still();
mcLogo.buttonMode = true;
//add the still object to the stage
addChild(mcLogo);
var mcLogo_X = 142.00;
var mcLogo_Y = 66.00;
mcLogo.x = mcLogo_X;
mcLogo.y = mcLogo_Y;
//set up the link
function gotoHomePage(event:MouseEvent):void {
//var targetURL:URLRequest = new URLRequest("http://mc.com/");
//navigateToURL(targetURL);
navigateToURL(new URLRequest("http://mc.com"), "_blank");
}
mcLogo.addEventListener(MouseEvent.CLICK, gotoHomePage);
I guess you’re using Firefox 4.0. There seems to be a bug in Firefox 4.0 regarding Flash and mouse-cursor (also affects
Mouse.hide()). Apparently there’s nothing you can do about it for now… Also have a look at this Firefox help thread.