Hello. Robb here.
Any help would be appreciated. It seems like it would be an easy solution, but it escapes me.
SOFTWARE
I am using Flash MX. I am on a PC. Windows 200 Professional.
PROBLEM
I have a navigation bar. At the moment I have only one “button”, which is actually a Movie Clip. On rollOver a submenu slides down. On rollOut the action “rewinds” and the submenu slides back up.
The submenu is also a movie clip. Within this movie clip is a button.
The rollOver works fine. The rollOut works fine. But the button is not functioning.
OBJECTIVE
To have several navigation bar “buttons” (movie clips, functionally) each with their own submenus (which are also movie clips) with buttons. I simply want the buttons to work. I am looking for the same effect as the navigation bar on the following website: http://www.oakhillschurchsa.org/
SPECIFICS
My main nav bar’s movie clip “button” has the following actions assigned to it:
[indent][size=1]onClipEvent (enterFrame) {
if (go) {
nextFrame();
} else {
prevFrame();
}
}
onClipEvent (load) {
var go;
stop();
viewpoint_clip.onRollOver = function() {
go = true;
};
viewpoint_clip.onRollOut = function() {
go = false;
};
}[/size]
[/indent]Within this movie clip is the submenu. It is a movie clip with the instance name “viewpoint_clip”. Within THIS movie clip is a button.
With the exception of the button’s “getURL” function, there is only basic tweening and no action scripts.
Any insights that could help me understand how to get my button within the submenu movie clip to work would be fantastic.
Many thanks.
ROBB