Drop-down menu problem

I have a dropdown menu similar to attached fla (see below) but had problem with the “target” function. Everytime i click on the sub-headings, a new window opens up. It’s not quite what i wanted…how can i open a window to itself? Any help would be greatly appreciated.

oops! here’s the fla

Well, I had a look at your code and I can’t see what the problem is. It seems to be working fine for me…

But if you are using a different file to the one you provided and are still getting the error, you should open a link in the same window like this:

getURL("link", "_self");

On a button you would use this:

on (release) {
getURL(“link”, “_self”);
}

where link equals the page to open.

Hope that helped!