vote up 0 vote down star

Is there a way JavaScript can detect clicks (or mousedown, mouseup) that happen on Flash objects?

I have tried:

  • Attaching the 'mouseup', 'mousedown', and 'click' events to the Flash object using attachEvent/addEventListener
  • Directly attaching the 'onmouseup', 'onmousedown', 'onclick' events inline on the Flash object
  • Switching from event 'bubbling' to event 'capturing' (only works in Firefox/Safari)

I need this to work in IE6+, Firefox 2+, and Safari 3+.

Thanks for any help! -Dave

flag

2 Answers

vote up 0 vote down

Do you own the flash objects?

We implemented call-backs from Flash to JavaScript when flash detects clicks. But we own the flash app and can manage the interaction.

link|flag
I forgot to mention, we do not own the Flash objects. We are trying to detect clicks that happen on display advertising. – ArtzStudio Jul 21 at 14:37
vote up 0 vote down

Yes, you can just use the standard method of hooking up Flash and Javascript and create a dispatch function within Flash for those events and a listener function in Javascript to detect them. Pretty straight forward and not challenging at all.

The one thing you might be careful about is the object within Flash that you attach the events to, like the Stage or Movie or other objects.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.