|
| hey folks i need a lil AS2 help.
im creating a site and the navigation uses a slide in/out concept. when a nav
button is clicked the current pane slides out and the new one slides in based
on which button is clicked. the coding for the buttons is as follows:
on (release) {
// variable to tell the slide out which slide in comes next
var menuCount = 1;
// portfolio button animation call
if (frame == 2) {
_root.homeMenu.gotoAndPlay("outro");
}
// resume button animation call
if (frame == 3) {
_root.res.gotoAndPlay("outro");
}
// contact button animation call
if (frame == 4) {
_root.cont.gotoAndPlay("outro");
}
}
OK the problem is that for some reason this thing is not working correctly. i
think something is wrong with the frame calls because there one works fine but
once you add the others it just dosent work
|
|