vote up 0 vote down star

Hi.

I'm in JavasSript, but not in Flash, so maybe you can help me with this one. I have embed some audio on a page using the google component, as here :

<embed type="application/x-shockwave-flash" src="http://www.google.com/reader/ui/3247397568-audio-player.swf?audioUrl=MP3_FILE_URL" width="400" height="27" allowscriptaccess="never" quality="best" bgcolor="#ffffff" wmode="window" flashvars="playerMode=embedded" />

What I want to do (if it's possible), is to "query" the component to know where in time it is, and do some event depending on timeline. Is it possible using only JavaScript ?

thanks.

flag

3 Answers

vote up 0 vote down

Take a look at swfobject javascript library

link|flag
vote up 1 vote down

This will depend entirely on whether the flash component provides an external api. In general, it's possible to allow javascript to access a flash component. However, it has to be explicitly designed into the flash component.

I'd check to see if there are any docs from google about using this flash component. I'd also check to see where it's embeded to see if any javascript on the page is accessing it.

Lastly, if you look at the embed, it seems it has an attribute allowscriptaccess="never". That seems relevant:)

link|flag
that's what I thought after reading Jon Cram answer's answer. And yes, just after sending the question I noticed the "allowscriptaccess"... I have to find a place on how deal with the scriptaccess="always/yes"... thanks! – RVeur23 Feb 23 at 17:42
vote up 0 vote down

Adobe provide a JavaScript API for interacting with Flash:

http://www.adobe.com/devnet/flash/javascript_api.html

link|flag

Your Answer

Get an OpenID
or

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