Hey there…
Ok, I am using the “3 collapsing menus” fla from Senocular:
http://www.senocular.com/flash/source.php?id=0.140
I have added a couple of section titles, and removed the sub-menu buttons from all but one of the section titles. When the drop-down section title is clicked, it opens up a sub-menu. clicking ANY section title will close the drop down.
Problem is that I would like each of the “section titles” (except the one that is a drop-down) to be a link in and of itself as well. If I apply some AS to the section title movieclips to make it so:
title.onRelease = function () {
loadMovie(“faq.swf”, _root.contentarea);
}
The actions begin to act strange. The drop down works fine. If the drop down is “closed” the links work fine as well. If the drop down is open, and you click one of the other section titles, it will close the drop down, but it will not open the linked swf.
I would like it to do both!
Any ideas?