Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When SoundCloud HTML5 Player Widget is loaded with autoplay option, play event not firing when track starts. However there is a timeout between loading the widget (or loading other URL into the widget) and when the track starts, so it's nice widget to call the event.

Is this by design or is it issue to be solved?

share|improve this question
Your question is all but clear. What widget are you talking about? Could you provide a code sample to help us understand your problem? – Py. Apr 23 '12 at 21:13
there. sorry, i tough it's clear by the tags. – cucko Apr 24 '12 at 11:06

1 Answer

up vote 2 down vote accepted

The HTML5 Player widget should fire a SC.Widget.Events.PLAY event when the auto_play option is used. Here's a code snippet I used to verify:

HTML:

<!doctype html>
<html>
  <head>
    <title>Widget Demo</title>
    <style type="text/css">
    iframe {
      display:block;
      border:0;
      margin-bottom: 20px;
      height: 365px;
    }
    </style>
  </head>
  <body>
    <iframe id="widget" width="100%"></iframe>
  </body>
  <script src="http://w.soundcloud.com/player/api.js"></script>
  <script src="script.js"></script>
</html>

JavaScript (the contents of script.js):

(function() {
    var iframe = document.querySelector('#widget');
    iframe.src = 'http://w.soundcloud.com/player/?url=http://api.soundcloud.com/tracks/43315398&auto_play=true';

    var widget = SC.Widget(iframe);

    widget.bind(SC.Widget.Events.PLAY, function(eventData) {
        alert('Playing...');
    });
}());

You can check out a working example here on jsfiddle.

share|improve this answer
i've found the problem. in soundcloud widget playground, all events are binded on iframe.onload, even on widget.ready event. thanks. – cucko Apr 25 '12 at 10:01

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.