PDA

View Full Version : Weird problem


jt_01
01-10-2007, 02:35 PM
I have a bunch of thimbnails being loaded from xml inside a holding clip. They have code attached to them as they are loaded



thumbHolder.onRelease = function ()
{
//code here...
};


all work fine.....however as soon as I add any kind of rollover, rollout etc... code to the main holder clip the code attached to the thumbnails wont run?

Any ideas???

Noct
01-10-2007, 06:36 PM
If I understand you correctly, you have conflicting mouse events. A child clip cannot use a mouseOver if it's parent clip already does. If you have a mouse event on a clip, any clips inside of it must use a different event entirely.

Try using a hitTest on your main mc, and rollOvers on the ones inside it. (or vice versa)