Flash Nav Help
Flash Nav Help
Out of context: Reply #2
- Started
- Last post
- 5 Responses
- stimuli0
Here's the code from the movie m1.swf (the main menu in column 2).
m1.swf frame actions:
stop();
m1b1anim.onEnterFrame = function() {
if (fadem1b1) {
m1b1anim.nextFrame();
} else {
m1b1anim.prevFrame();
}
};
m1b2anim.onEnterFrame = function() {
if (fadem1b2) {
m1b2anim.nextFrame();
} else {
m1b2anim.prevFrame();
}
};
m1b3anim.onEnterFrame = function() {
if (fadem1b3) {
m1b3anim.nextFrame();
} else {
m1b3anim.prevFrame();
}
};_____________________
m1.swf Info button actions:
on (rollOver) {
_root.fadem1b1 = true;
}on (rollOut, dragOut) {
_root.fadem1b1 = false;
}on (press) {
_root.m2.unloadMovie();
_root.m2.loadMovie("m1b1sub.swf...
}