Click to See Complete Forum and Search --> : Mouse over navigation


manodessey
05-30-2006, 01:48 AM
Hi,

I am (trying to) redesign a webpage with flash aspects. I have been asked to create images that essentially link to another section within the movie. (A mouse over navigation as I know it by). The script I have so far is:

1: on(mouseEvent:rollOver){
2:
3: gotoAndPlay(195)}

I'm not sure what is wrong with this. Hopefully an easy fix. Any ideas welcome.

Thanks

magicplant
05-30-2006, 04:28 AM
Hi,
Try this...

on(rollOver) {
your_mc.gotoAndPlay(195);
}

Replace "your_mc" with the instance name of your movie clip Or if its the root timeline that you wish to navigate replace it with "_root".
Make sure this code is attached to your button, rather than just in a keyframe (as the code would be different.
Hope this helps
Cheers
Alan

manodessey
05-30-2006, 05:35 PM
All working.... thanx v much