I have combo box placed above dynamically created buttons. Whenever I click on the combo box to select a value from the drop down, and the drop down displays over the top of my mc, it won’t allow me to select anything in the drop down selection as it clicks the mc instead. How do I get the combo box selection portion to be clickable when placed over a clickable mc? I tried putting the following code in right after I’m creating the dynamic mc’s but this did not work either.
where pageSelect == my combo box
if(_root.pageSelect != undefined) {
_root.pageSelect.swapDepths(_root.getNextHighestDepth());
}