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

The script below will display an embedded YouTube player with four items in a playlist: the first entry is determined by the video ID directly inserted into the embedSWF URL, the other three originate from an array called playlistids:

<html>
  <head>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js"></script> 
  </head>

  <body>
    <div id="ytapiplayer">
      You will need Flash 8 or better to view this content.
    </div>

    <script type="text/javascript">
      var params = { allowScriptAccess: "always" };
      var atts = { id: "myytplayer" };

      playlistids = new Array('_T8dw1nK7b0','aF4i2XXFqL0','a_lsWeGq-HM')

      swfobject.embedSWF("http://www.youtube.com/v/R5-gtsdenpE&playlist=" + playlistids + "&enablejsapi=1&playerapiid=ytplayer&version=3", "ytapiplayer", "720", "405", "8", null, null, params, atts);

      function onYouTubePlayerReady(playerId) {
        ytplayer = document.getElementById("myytplayer");
      }

      function play() {
        if (ytplayer) {
          ytplayer.playVideo();
        }
      }
    </script>

    <br><a href="javascript:void(0)" onclick="play()">Play current video</a>
    <br><a href="javascript:void(0)" onclick="alert('How's it done?')">Play 3rd video in playlist</a>

  </body>
</html>

It'd be nice if I could somehow play a playlist entry by clicking a link, but it is unclear to me how such a thing could be achieved.

The loadPlaylist function does have a parameter to start playing a specific entry number, called the index:

The optional index parameter specifies the index of the first video in the playlist that will play. The parameter uses a zero-based index, and the default parameter value is 0, so the default behavior is to load and play the first video in the playlist.

While this might be similar to what I need, I'm actually looking for a way to play a specific entry on click - not upon initialization.

Any help would be much appreciated!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.