Cursor hand when mouse over images, Actionscript 3-Flash
Funny, I couldn’t find the answer to this anywhere, either the answers are unrelated or they are overly complicated. So here is what I did:
var imageLoader:Loader = new Loader(); imageLoader.load(new URLRequest("path to your image/some image.png")); var button:Sprite = new Sprite(); button.addChild(imageLoader); button.buttonMode = true; button.useHandCursor = true; addChild(button);
THAT’S IT!!!
Permalink for Cursor hand when mouse over images, Actionscript 3-Flash

