Re: [Flashcoders] Video has no mouseEnabled, help (AS3)

2008-02-02 Thread EECOLOR
In case this doesnt help you could also check out the property: mouseChildren and do something like parent.mouseChildren = false; Greetz Erik On 1/25/08, Matthias Dittgen [EMAIL PROTECTED] wrote: Hi! oh, I found a solution. I have to do a parent.mouseEnabled = false, too, because parent is

RE: [Flashcoders] Video has no mouseEnabled, help (AS3)

2008-01-26 Thread Cor
: [Flashcoders] Video has no mouseEnabled, help (AS3) Hello, I have a Sprite listening for MouseEvents below a Video. Video overlaps half the Sprite. The Sprite only receives mouseEvents where it is not overlapped by the Video. If Video was a Sprite, too, I could mouseEnable = false it, but Video

[Flashcoders] Video has no mouseEnabled, help (AS3)

2008-01-25 Thread Matthias Dittgen
Hello, I have a Sprite listening for MouseEvents below a Video. Video overlaps half the Sprite. The Sprite only receives mouseEvents where it is not overlapped by the Video. If Video was a Sprite, too, I could mouseEnable = false it, but Video doesn't have this property. Any suggestion? Matthias

Re: [Flashcoders] Video has no mouseEnabled, help (AS3)

2008-01-25 Thread Glen Pike
Overlay video with a transparent Sprite?? Matthias Dittgen wrote: Hello, I have a Sprite listening for MouseEvents below a Video. Video overlaps half the Sprite. The Sprite only receives mouseEvents where it is not overlapped by the Video. If Video was a Sprite, too, I could mouseEnable =

Re: [Flashcoders] Video has no mouseEnabled, help (AS3)

2008-01-25 Thread Matthias Dittgen
Hi! oh, I found a solution. I have to do a parent.mouseEnabled = false, too, because parent is the parent of the video as well as the sprite. That's it! Oh, this saves my day! :-) Your suggestion would become my next attempt, Glen. I am glad, I now don't have to do that. Matthias On Jan 25,