Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I use flash audio player like:

<script language="JavaScript" src="/audio/audio-player.js"></script> 
<script language="JavaScript" src="/audio/swfobject.js"></script> 
<script type="text/javascript">  
     AudioPlayer.setup("/audio/player.swf", {});
</script>
<p id="audio"> <a href="http://get.adobe.com/flashplayer/">Get Adobe Flash Player</a>.</p>
<script type="text/javascript"> 
     AudioPlayer.embed("audio", {
     soundFile: "/audio/test.mp3", 
     });
</script>

and I want to use hotkeys for audio play, so I need to know html element id for play button. Are there any ways to do it?

share|improve this question

1 Answer

of course there is, check the link. How to interact with Flash via Javascript?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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