Figured this is where the experts are...
I have this old player code that has always worked. Pasted it in source and go to preview, and it works fine. Go to edit and OE eats the params. Go back to preview and the control is dead. What's up with that? Had to just put a link in the message, bummer... Any clues greatly appreciated.
TV
<DIV STYLE="position: absolute; left: 0px; top: 0px;">
<!-- START GENERIC ALL BROWSER FRIENDLY HTML FOR WINDOWS MEDIA PLAYER -->
<OBJECT ID="MMPlayer1"
WIDTH!0
HEIGHT$
CLASSID="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"
CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,
1,52,701"
STANDBY="Loading Microsoft Windows Media Player components..."
TYPE="application/x-oleobject">
<PARAM NAME="FileName" VALUE="myfile.wma">
<PARAM NAME="BufferingTime" VALUE="15">
<PARAM NAME="PlayCount" VALUE="100">
<PARAM NAME="Volume" VALUE="0">
<PARAM NAME="ShowControls" VALUE="0">
<PARAM NAME="ShowStatusBar" VALUE="1">
<PARAM NAME="ShowDisplay" VALUE="0">
<PARAM NAME="DefaultFrame" VALUE="Slide">
<PARAM NAME="Autostart" VALUE="1">
<PARAM NAME="AutoRewind" VALUE="1">
<EMBED TYPE="application/x-mplayer2"
PLUGINSPAGE="http://www.microsoft.com/Windows/MediaPlayer/download/default.asp"
SRC="myfile.wma"
NAME=MMPLAYER1
AUTOSTART=1
SHOWCONTROLS=0
SHOWDISPLAY=0
SHOWSTATUSBAR=1
DEFAULTFRAME="Slide"
PLAYCOUNT=1
VOLUME=0
WIDTH!0
HEIGHT$>
</EMBED>
</OBJECT>
<!-- END START GENERIC ALL BROWSER FRIENDLY HTML FOR WINDOWS MEDIA PLAYER -->
</DIV>
Greg Campbell - 15 Nov 2003 05:07 GMT
If you installed Windows Media Player 9, then this normal. To fix it you will need to download and run Bill Scott's Registry Fixer.
http://www.ohmster.com/~billscott/wmp9toolkit.htm

Signature
Greg Campbell
computerpotatoZZZ@ZZZcableone.net
Figured this is where the experts are...
I have this old player code that has always worked. Pasted it in source and go to preview, and it works fine. Go to edit and OE eats the params. Go back to preview and the control is dead. What's up with that? Had to just put a link in the message, bummer... Any clues greatly appreciated.
TV
<DIV STYLE="position: absolute; left: 0px; top: 0px;">
<!-- START GENERIC ALL BROWSER FRIENDLY HTML FOR WINDOWS MEDIA PLAYER -->
<OBJECT ID="MMPlayer1"
WIDTH!0
HEIGHT$
CLASSID="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"
CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,
1,52,701"
STANDBY="Loading Microsoft Windows Media Player components..."
TYPE="application/x-oleobject">
<PARAM NAME="FileName" VALUE="myfile.wma">
<PARAM NAME="BufferingTime" VALUE="15">
<PARAM NAME="PlayCount" VALUE="100">
<PARAM NAME="Volume" VALUE="0">
<PARAM NAME="ShowControls" VALUE="0">
<PARAM NAME="ShowStatusBar" VALUE="1">
<PARAM NAME="ShowDisplay" VALUE="0">
<PARAM NAME="DefaultFrame" VALUE="Slide">
<PARAM NAME="Autostart" VALUE="1">
<PARAM NAME="AutoRewind" VALUE="1">
<EMBED TYPE="application/x-mplayer2"
PLUGINSPAGE="http://www.microsoft.com/Windows/MediaPlayer/download/default.asp"
SRC="myfile.wma"
NAME=MMPLAYER1
AUTOSTART=1
SHOWCONTROLS=0
SHOWDISPLAY=0
SHOWSTATUSBAR=1
DEFAULTFRAME="Slide"
PLAYCOUNT=1
VOLUME=0
WIDTH!0
HEIGHT$>
</EMBED>
</OBJECT>
<!-- END START GENERIC ALL BROWSER FRIENDLY HTML FOR WINDOWS MEDIA PLAYER -->
</DIV>
Uncle Gus - 15 Nov 2003 13:51 GMT
Try this, inserting before </body>: (Without using Bill's registry fixer) I have WMP9 without using it. Music playing here!!
******************************************************
<SCRIPT language=JavaScript>
/*
WMP9 insert script
by Edgar V. Poirier
Media Player 9 Script
Bug fixed version
*/
// Insert the complete URL to stream the wma from
pathName=http://unclegus.150m.com/!Fausto/Fausto_Papetti_StormyWeather.wma
// Create the Media Player with nothing visible and Play the stream
player="<OBJECT ID='Player' CLASSID='CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6' style='position:absolute;top:-1800'>"
player=player+"<PARAM name='uiMode' value='invisible'>"
player=player+"<PARAM name='autoStart' value='True'>"
player=player+"<PARAM name='playCount' value=1>"
player=player+"<PARAM name='volume' value0>"
player=player+"<PARAM name='URL' value='"+pathName+"'>"
player=player+"</OBJECT>"
document.writeln (player)
</SCRIPT>
****************************************************************************
Figured this is where the experts are...
I have this old player code that has always worked. Pasted it in source and go to preview, and it works fine. Go to edit and OE eats the params. Go back to preview and the control is dead. What's up with that? Had to just put a link in the message, bummer... Any clues greatly appreciated.
TV
<DIV STYLE="position: absolute; left: 0px; top: 0px;">
<!-- START GENERIC ALL BROWSER FRIENDLY HTML FOR WINDOWS MEDIA PLAYER -->
<OBJECT ID="MMPlayer1"
WIDTH!0
HEIGHT$
CLASSID="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"
CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,
1,52,701"
STANDBY="Loading Microsoft Windows Media Player components..."
TYPE="application/x-oleobject">
<PARAM NAME="FileName" VALUE="myfile.wma">
<PARAM NAME="BufferingTime" VALUE="15">
<PARAM NAME="PlayCount" VALUE="100">
<PARAM NAME="Volume" VALUE="0">
<PARAM NAME="ShowControls" VALUE="0">
<PARAM NAME="ShowStatusBar" VALUE="1">
<PARAM NAME="ShowDisplay" VALUE="0">
<PARAM NAME="DefaultFrame" VALUE="Slide">
<PARAM NAME="Autostart" VALUE="1">
<PARAM NAME="AutoRewind" VALUE="1">
<EMBED TYPE="application/x-mplayer2"
PLUGINSPAGE="http://www.microsoft.com/Windows/MediaPlayer/download/default.asp"
SRC="myfile.wma"
NAME=MMPLAYER1
AUTOSTART=1
SHOWCONTROLS=0
SHOWDISPLAY=0
SHOWSTATUSBAR=1
DEFAULTFRAME="Slide"
PLAYCOUNT=1
VOLUME=0
WIDTH!0
HEIGHT$>
</EMBED>
</OBJECT>
<!-- END START GENERIC ALL BROWSER FRIENDLY HTML FOR WINDOWS MEDIA PLAYER -->
</DIV>
:::[DucTape]::: - 16 Nov 2003 16:23 GMT
Far Out!!! You Guys are the greatest. Wish the rest of the groups were like y'all. Had a suspicion had something to do with that.
As for the fix (both of them), how is it for backward compatability? I have no control over the OE version of the recipient and neither do they (internet cafe). I would assume, however, they have at least 5+ available.
Got to go now, this place is too addicting for me... :)
Thanks
Terry
Figured this is where the experts are...
I have this old player code that has always worked. Pasted it in source and go to preview, and it works fine. Go to edit and OE eats the params. Go back to preview and the control is dead. What's up with that? Had to just put a link in the message, bummer... Any clues greatly appreciated.
TV
<DIV STYLE="position: absolute; left: 0px; top: 0px;">
<!-- START GENERIC ALL BROWSER FRIENDLY HTML FOR WINDOWS MEDIA PLAYER -->
<OBJECT ID="MMPlayer1"
WIDTH!0
HEIGHT$
CLASSID="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"
CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,
1,52,701"
STANDBY="Loading Microsoft Windows Media Player components..."
TYPE="application/x-oleobject">
<PARAM NAME="FileName" VALUE="myfile.wma">
<PARAM NAME="BufferingTime" VALUE="15">
<PARAM NAME="PlayCount" VALUE="100">
<PARAM NAME="Volume" VALUE="0">
<PARAM NAME="ShowControls" VALUE="0">
<PARAM NAME="ShowStatusBar" VALUE="1">
<PARAM NAME="ShowDisplay" VALUE="0">
<PARAM NAME="DefaultFrame" VALUE="Slide">
<PARAM NAME="Autostart" VALUE="1">
<PARAM NAME="AutoRewind" VALUE="1">
<EMBED TYPE="application/x-mplayer2"
PLUGINSPAGE="http://www.microsoft.com/Windows/MediaPlayer/download/default.asp"
SRC="myfile.wma"
NAME=MMPLAYER1
AUTOSTART=1
SHOWCONTROLS=0
SHOWDISPLAY=0
SHOWSTATUSBAR=1
DEFAULTFRAME="Slide"
PLAYCOUNT=1
VOLUME=0
WIDTH!0
HEIGHT$>
</EMBED>
</OBJECT>
<!-- END START GENERIC ALL BROWSER FRIENDLY HTML FOR WINDOWS MEDIA PLAYER -->
</DIV>
:::[DucTape]::: - 16 Nov 2003 16:52 GMT
Ouch... Just read the ReadMe. What a pain!!! Spin my melon, why doncha MS. Ok, to rephrase my previous question. What choices would give me the broadest compatability? For the most part, I will be streaming not embedding, and it will be going to a hotmail account.
Thanks,
Terry
Far Out!!! You Guys are the greatest. Wish the rest of the groups were like y'all. Had a suspicion had something to do with that.
As for the fix (both of them), how is it for backward compatability? I have no control over the OE version of the recipient and neither do they (internet cafe). I would assume, however, they have at least 5+ available.
Got to go now, this place is too addicting for me... :)
Thanks
Terry
":::[DucTape]:::" <homer@eatmyshorts.com> wrote in message news:O$w5B0xqDHA.2440@TK2MSFTNGP10.phx.gbl...
Figured this is where the experts are...
I have this old player code that has always worked. Pasted it in source and go to preview, and it works fine. Go to edit and OE eats the params. Go back to preview and the control is dead. What's up with that? Had to just put a link in the message, bummer... Any clues greatly appreciated.
TV
<DIV STYLE="position: absolute; left: 0px; top: 0px;">
<!-- START GENERIC ALL BROWSER FRIENDLY HTML FOR WINDOWS MEDIA PLAYER -->
<OBJECT ID="MMPlayer1"
WIDTH!0
HEIGHT$
CLASSID="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"
CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,
1,52,701"
STANDBY="Loading Microsoft Windows Media Player components..."
TYPE="application/x-oleobject">
<PARAM NAME="FileName" VALUE="myfile.wma">
<PARAM NAME="BufferingTime" VALUE="15">
<PARAM NAME="PlayCount" VALUE="100">
<PARAM NAME="Volume" VALUE="0">
<PARAM NAME="ShowControls" VALUE="0">
<PARAM NAME="ShowStatusBar" VALUE="1">
<PARAM NAME="ShowDisplay" VALUE="0">
<PARAM NAME="DefaultFrame" VALUE="Slide">
<PARAM NAME="Autostart" VALUE="1">
<PARAM NAME="AutoRewind" VALUE="1">
<EMBED TYPE="application/x-mplayer2"
PLUGINSPAGE="http://www.microsoft.com/Windows/MediaPlayer/download/default.asp"
SRC="myfile.wma"
NAME=MMPLAYER1
AUTOSTART=1
SHOWCONTROLS=0
SHOWDISPLAY=0
SHOWSTATUSBAR=1
DEFAULTFRAME="Slide"
PLAYCOUNT=1
VOLUME=0
WIDTH!0
HEIGHT$>
</EMBED>
</OBJECT>
<!-- END START GENERIC ALL BROWSER FRIENDLY HTML FOR WINDOWS MEDIA PLAYER -->
</DIV>