I have a MovieClip, with 3 layers. 1 (top) is 'actionscript' with no items, as Flash prescribes. Layer 2 has a TLF text piece. Layer 3 has some bitmaps.
In the backing class file, I have hooked MouseOver and MouseOut events, for both the capturing, and bubbling+target phases. The piece of text is much smaller than the bitmaps, so it appears as if the text is surrounded completely.
I'm seeing that when I bring my mouse over the bitmap part to the text, I get: (bitmap) MouseOver (bitmap) MouseOut SimpleButton MouseOver SimpleButton MouseOut TextLine MouseOver
So the cursor is going over the bitmap, then leaving it as this SimpleButton seems to be higher than my MovieClip, then, simiarly for my TextLine.
Multiple problems here: where the heck is the SimpleButton coming from? (Clue: I have no SimpleButton anythings in my project, ive not used them). TextLine is here instead of TFLTextLine - wtf.
Most concerningly though, is that although the cursor IS over the movieclip, i'm getting MouseOut events as it goes over my text. This is useless for doing roll-over type functionality, for example, in a button which has a roll-over state.
Any ideas anyone?
Rich