PhishIn4Dmb
09-06-2004, 09:29 AM
Hey all: Here it is. I just stumbled across this and I found it a bit strange and figured I would see if any one has any answers to the question.
I have a menu of sports icons on the left and on the right I have a map with small version of the particular sports some one can do across the map. When you roll over the menu on the left it plays the small sports items on the map (they get larger) If you click the menu Item, it loads a external swf into a movie clip on stage and displys the particular sports page and info.
When you roll over the main menu on the left it unloads the movie clip. It works fine no problem. So for the icons on the map if you roll over them they get larger, and if you click them it loads that particular sports menu into the exact same movie clip on the stage as the menu does. Two different links to the same menu.
So here is where it gets weird. When you click the small icon on the map and load up the menu (as if you where doing it from the main menu on the left) and then try to unolad it by simply rolling over any of the other sports Icon on the menu on the Left it does nothing. Here is the code for the menu buttons and the map buttons.
Menu Code
on (rollOver) {
kiteseoul_mc.gotoAndStop(5);
kitesin_mc.gotoAndStop(5);
kitejeju_mc.gotoAndStop(5);
unloadMovie(Disply_mc)
}
on (rollOut) {
kiteseoul_mc.gotoAndStop(1);
kitesin_mc.gotoAndStop(1);
kitejeju_mc.gotoAndStop(1);
}
on (press) {
loadMovie ("korea/kiteboarding.swf", Disply_mc)
}
Map Code:
on (rollOver) {
gotoAndStop(10);
}
on (rollOut) {
gotoAndStop(1);
}
on (press) {
loadMovie ("korea/Mountner.swf", Disply_mc)
}
I have a menu of sports icons on the left and on the right I have a map with small version of the particular sports some one can do across the map. When you roll over the menu on the left it plays the small sports items on the map (they get larger) If you click the menu Item, it loads a external swf into a movie clip on stage and displys the particular sports page and info.
When you roll over the main menu on the left it unloads the movie clip. It works fine no problem. So for the icons on the map if you roll over them they get larger, and if you click them it loads that particular sports menu into the exact same movie clip on the stage as the menu does. Two different links to the same menu.
So here is where it gets weird. When you click the small icon on the map and load up the menu (as if you where doing it from the main menu on the left) and then try to unolad it by simply rolling over any of the other sports Icon on the menu on the Left it does nothing. Here is the code for the menu buttons and the map buttons.
Menu Code
on (rollOver) {
kiteseoul_mc.gotoAndStop(5);
kitesin_mc.gotoAndStop(5);
kitejeju_mc.gotoAndStop(5);
unloadMovie(Disply_mc)
}
on (rollOut) {
kiteseoul_mc.gotoAndStop(1);
kitesin_mc.gotoAndStop(1);
kitejeju_mc.gotoAndStop(1);
}
on (press) {
loadMovie ("korea/kiteboarding.swf", Disply_mc)
}
Map Code:
on (rollOver) {
gotoAndStop(10);
}
on (rollOut) {
gotoAndStop(1);
}
on (press) {
loadMovie ("korea/Mountner.swf", Disply_mc)
}