|
|
Our Hot Pick: Rising Antivirus 2006 - Certified by TUV & Checkmark! Get 10% discount by entering this coupon code: ONDISCOUNT10
On a recently created webpage, I have six embeded Windows Media Players. All except one player is linked to play a Windows Play List file (.wpl), but only one of the players is set to automatically begin play back when the webpage is accessed.
Here's the problem... While the player set to automatically begin playback responds correctly to a user's pressing of the "next track" and "last track" buttons, the other players do not. Although these players play and access the correct .wpl files, the user has to press "play" each and every time they change the track. What I thought is supposed to occur and what I want to have occur is for these players to continue playing until the user presses "stop." In different words, when the user presses "next track" or "last track," the player should just begin playing the next or last track or, not stop after going to the next or last track and then waiting for the user to press "play" again.
Below is part of the HTML language (source) that I used to create the site. Using it will embed two media players on a webpage and will illustrate the problem that I am having. Feel free to copy and past the partial "source" into Notepad and then save it as an HTML to see what I am experiencing. If you do this, you will see that the first player on the page is the automatic playback player that works correctly and the second player illustrates the problem at hand. Is there a way to fix this problem, perhaps by adding more language or changing the current language?
Thanks, Zakhary
THE HTML "SOURCE" IS BELOW:
<p class=MsoNormal><span class=SpellE>MOTOWN POP</span></p> <object type="application/x-mplayer2" classid="6BF52A52-394A-11d3-B153-00C04F79FAA6" allowScriptAccess="never" allowNetworking="internal" height="45" width="280"> <param name="allowScriptAccess" value="never" /> <param name="allowNetworking" value="internal" /> <param name="InvokeURLs" value="0" /> <param name="fileName" value="http://www.scoremus.com/zmallett/MotownPop.wpl" /> <param name="URL" value="http://www.scoremus.com/zmallett/MotownPop.wpl" /> <param name="src" value="http://www.scoremus.com/zmallett/MotownPop.wpl" /> <param name="autostart" value="true" /> </object> <p class=MsoNormal><span class=SpellE>DANCE/DISCO/FUNK</span></p> <object type="application/x-mplayer2" classid="6BF52A52-394A-11d3-B153-00C04F79FAA6" allowScriptAccess="never" allowNetworking="internal" height="45" width="280"> <param name="allowScriptAccess" value="never" /> <param name="allowNetworking" value="internal" /> <param name="InvokeURLs" value="0" /> <param name="fileName" value="http://www.scoremus.com/zmallett/DanceDiscoFunk.wpl" /> <param name="URL" value="http://www.scoremus.com/zmallett/DanceDiscoFunk.wpl" /> <param name="src" value="http://www.scoremus.com/zmallett/DanceDiscoFunk.wpl" /> <param name="autostart" value="false" /> </object>
|
|
|