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