[COLOR=darkslateblue]I just watched the “Creating A Movie Clip Button” tutorial and it works great.[/COLOR]
[COLOR=darkslateblue][/COLOR]
[COLOR=darkslateblue]I would like to be able to use a similar effect for the background of a menu area.[/COLOR]
[COLOR=darkslateblue][/COLOR]
[COLOR=darkslateblue]Problem is, if I use “onRollOver” method the cursor turns into a mouse finger. I want the effect but not the cursor change.[/COLOR]
[COLOR=darkslateblue][/COLOR]
[COLOR=darkslateblue]The code modified slightly from the tutorial is: [/COLOR]
[COLOR=darkslateblue][/COLOR]
[COLOR=darkslateblue]Frame Actions on main timeline[/COLOR]
[INDENT][COLOR=darkslateblue][/COLOR][COLOR=darkslateblue]this.bg.onRollOver = function () {
bg.gotoAndPlay("_over");
};[/COLOR]
[COLOR=darkslateblue]
this.bg.onRollOut = function () {
bg.gotoAndPlay("_out");
}[/COLOR]
[/INDENT][COLOR=darkslateblue][/COLOR]
[COLOR=darkslateblue][/COLOR]