I’m trying to make a small dropdown menu, which on rollover shows a couple of links. This works fine, as long as i don’t make a text link on the second part, which appears when you hover over the button in the first part.
As soon as i do that, it stops to work. The moment you place your mouse over the link, you are taken back to the first frame which shouldn’t happen. This prevents you from clicking the link.
What do i need to do, to prevent it from returning to the first frame when i hover over the link? .fla file
First part
on(rollOver) {
gotoAndStop("open");
}
Second part, here is the text link placed on the button.
on(rollOut) {
gotoAndStop("closed");
}