Hi,
I’m working on an assignement for a class and I need to build a web portal. On the main timeline I have an animation then it goes to the eight buttons of my portal. Six of these are external web links, two go to other frames. On those frames I have a back to main bbutton that takes me back to frame 85. When I click on back to main it takes me back, but then none of the links work again. I have a layer with actionscript actions on it as well as an AS file.
This is the code I’m using on the frame to take me back to main.
BacktoMain.addEventListener(MouseEvent.MOUSE_UP, navHomePage);
function navHomePage(event:MouseEvent){
gotoAndStop(85);
}
Any thoughts?