Cursor problem

so lemme get this straight.
i go into actions and i put the stuff under the PHP. What do i click on, the frame or the button?

Make the button. Click on it. Press F9. Put in the code under PHP. You’ll have to change the stuff after // to what you want.

You should get a grasp of actions on buttons normally, before using mcs as buttons.

Look around for actionscript tutorials. Try and grasp the basics. I can post the code or a fla - but you won’t learn anything.

WHen i hit F9 it gave me an accesibilty menu?
What do i do with that?

If you select a movieclip and press F9 it should bring up the actions window. Select it and right click if you want and go to actions.

most of those commands I cant find in the actions menu

Try not to use the normal mode - it’s actually quicker and easier with the expert mode - when entering the commands.

wait expert mode? I have to do all this by hand?

Well that’s the way the rest of us do it. It’s not automatic. And besides, trust me, once you get used to it, it’s much easier, but hey - it’s up to you.

Anyway - just copy and past the code if you want and double check it - at least get to see if it’s working.

onClipEvent(enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
// code, could be nextFrame or could be gotoAndPlay(wherever)
// for the rollover
}
}

which part of this am i supposed to edit out


onClipEvent(enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
// code, could be nextFrame or could be gotoAndPlay(wherever)
// for the rollover
}
}

// and what’s after them. Add your rollover action.