AJ-PTFG
Guest
|
Posted:
Sat Jul 24, 2004 4:15 am Post subject:
Coding to stream .wmv video file? |
|
|
Hello,
I have a video file that I would like to stream that is in .wmv file format.
I would like to control the size of the window the video displays in, I would like the video to play on the webpage instantly, I would like a "Full screen" button.
Any help would be appreciated. This microsoft.com website is very confusing, and I cannot find the coding that I need to stream the video.
|
|
urug haiml
Guest
|
Posted:
Mon Jul 26, 2004 11:34 am Post subject:
Re: Coding to stream .wmv video file? |
|
|
Heres javascript to for the fullscreen button
<SCRIPT LANGUAGE="JavaScript">
function max(){
document.mediaPlayer.DisplaySize = 3;
}
</script>
and then add a button for example
<A HREF="#" onclick="max()" onMouseOver="fullscreenbuttonover.gif"
onMouseOut="fullscreenbutton..gif">
<IMG ALT="Fullscreen" BORDER=0
SRC="fullscreenbutton.gif" ID="Fullscreenbutton"
NAME="fullscreenbutton"></A>
"AJ-PTFG" <AJ-PTFG@discussions.microsoft.com> wrote in message
news:46C4CDB2-B238-46D5-9C60-5FABFB9E0125@microsoft.com...
| Quote: | Hello,
I have a video file that I would like to stream that is in .wmv file
format.
I would like to control the size of the window the video displays in, I
would like the video to play on the webpage instantly, I would like a "Full |
screen" button.
| Quote: |
Any help would be appreciated. This microsoft.com website is very
confusing, and I cannot find the coding that I need to stream the video. |
|
|