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
Hello Matthias, Load the video(component) into a Sprite instance and you can attach Mouse events to it HTH Cor -Oorspronkelijk bericht- Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Namens Matthias Dittgen Verzonden: vrijdag 25 januari 2008 15:07 Aan: Flash Coders List Onderwerp:

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,