I would like to have page with windows media player on the left and a list of
movies on the right. When a movie is clicked it starts playing in the player
on the left side og the page. No new player opens it just plays any movie
selected from the list. Any ideas appreciated.

Re: Windows media player multable secections by Charles

Charles
Thu Feb 16 12:13:48 CST 2006

You have to embed a player object similar to this:
<object id="Player" height="0" width="0"
classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
<param name="URL" value="">
<param name="autoStart" value="0">
</object>

(I think 0 is don't start automatically)
Then, add an onclick event of some sort to each "movie", where it does
something like this:
Player.URL = "movie.asx";
Player.controls.play();

(this last <play()> may not be neccessary, didn't test). The movie may start
with just feeding it the filename, but not sure.


hth,
Charles


"Dick" <Dick@discussions.microsoft.com> wrote in message
news:35C3D5B4-9FE0-4534-B141-2322DD3BF88D@microsoft.com...
>I would like to have page with windows media player on the left and a list
>of
> movies on the right. When a movie is clicked it starts playing in the
> player
> on the left side og the page. No new player opens it just plays any movie
> selected from the list. Any ideas appreciated.



Re: Windows media player multable secections by Dick

Dick
Thu Feb 16 15:49:02 CST 2006

Thanks Charles, I'll try this. Have you ever heard of something called
"Windows Media Metafiles" movie list? I think that may be another way to so
this but have no idea where to start.

"Charles Ezzell (MSFT)" wrote:

> You have to embed a player object similar to this:
> <object id="Player" height="0" width="0"
> classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
> <param name="URL" value="">
> <param name="autoStart" value="0">
> </object>
>
> (I think 0 is don't start automatically)
> Then, add an onclick event of some sort to each "movie", where it does
> something like this:
> Player.URL = "movie.asx";
> Player.controls.play();
>
> (this last <play()> may not be neccessary, didn't test). The movie may start
> with just feeding it the filename, but not sure.
>
>
> hth,
> Charles
>
>
> "Dick" <Dick@discussions.microsoft.com> wrote in message
> news:35C3D5B4-9FE0-4534-B141-2322DD3BF88D@microsoft.com...
> >I would like to have page with windows media player on the left and a list
> >of
> > movies on the right. When a movie is clicked it starts playing in the
> > player
> > on the left side og the page. No new player opens it just plays any movie
> > selected from the list. Any ideas appreciated.
>
>
>

Re: Windows media player multable secections by Charles

Charles
Thu Feb 16 16:24:02 CST 2006

I haven't used any of the other "playlists" type, but have started looking
into them. I just create an asf file which points to the wma files I use on
an MMS server. I also used in my setup a hidden media player object with
custom controls to stop and start the music, go to next & previous in the
play list, etc. For the few video's (usually slideshows) I've done for my
church, I just link them on separate pages & autostart them. I tried using
flash, but had some problems with getting the music timed properly (usually
it played too fast).

Charles

"Dick" <Dick@discussions.microsoft.com> wrote in message
news:9418DC72-436C-43DB-9D24-C12600DECBF0@microsoft.com...
> Thanks Charles, I'll try this. Have you ever heard of something called
> "Windows Media Metafiles" movie list? I think that may be another way to
> so
> this but have no idea where to start.
>
> "Charles Ezzell (MSFT)" wrote:
>
>> You have to embed a player object similar to this:
>> <object id="Player" height="0" width="0"
>> classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
>> <param name="URL" value="">
>> <param name="autoStart" value="0">
>> </object>
>>
>> (I think 0 is don't start automatically)
>> Then, add an onclick event of some sort to each "movie", where it does
>> something like this:
>> Player.URL = "movie.asx";
>> Player.controls.play();
>>
>> (this last <play()> may not be neccessary, didn't test). The movie may
>> start
>> with just feeding it the filename, but not sure.
>>
>>
>> hth,
>> Charles
>>
>>
>> "Dick" <Dick@discussions.microsoft.com> wrote in message
>> news:35C3D5B4-9FE0-4534-B141-2322DD3BF88D@microsoft.com...
>> >I would like to have page with windows media player on the left and a
>> >list
>> >of
>> > movies on the right. When a movie is clicked it starts playing in the
>> > player
>> > on the left side og the page. No new player opens it just plays any
>> > movie
>> > selected from the list. Any ideas appreciated.
>>
>>
>>



Re: Windows media player multable secections by Dick

Dick
Thu Feb 16 17:39:28 CST 2006

What I find hard to grasp is how do all tha peices fit together the player
and the play list. Do you have an example I could view?

"Charles Ezzell (MSFT)" wrote:

> I haven't used any of the other "playlists" type, but have started looking
> into them. I just create an asf file which points to the wma files I use on
> an MMS server. I also used in my setup a hidden media player object with
> custom controls to stop and start the music, go to next & previous in the
> play list, etc. For the few video's (usually slideshows) I've done for my
> church, I just link them on separate pages & autostart them. I tried using
> flash, but had some problems with getting the music timed properly (usually
> it played too fast).
>
> Charles
>
> "Dick" <Dick@discussions.microsoft.com> wrote in message
> news:9418DC72-436C-43DB-9D24-C12600DECBF0@microsoft.com...
> > Thanks Charles, I'll try this. Have you ever heard of something called
> > "Windows Media Metafiles" movie list? I think that may be another way to
> > so
> > this but have no idea where to start.
> >
> > "Charles Ezzell (MSFT)" wrote:
> >
> >> You have to embed a player object similar to this:
> >> <object id="Player" height="0" width="0"
> >> classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
> >> <param name="URL" value="">
> >> <param name="autoStart" value="0">
> >> </object>
> >>
> >> (I think 0 is don't start automatically)
> >> Then, add an onclick event of some sort to each "movie", where it does
> >> something like this:
> >> Player.URL = "movie.asx";
> >> Player.controls.play();
> >>
> >> (this last <play()> may not be neccessary, didn't test). The movie may
> >> start
> >> with just feeding it the filename, but not sure.
> >>
> >>
> >> hth,
> >> Charles
> >>
> >>
> >> "Dick" <Dick@discussions.microsoft.com> wrote in message
> >> news:35C3D5B4-9FE0-4534-B141-2322DD3BF88D@microsoft.com...
> >> >I would like to have page with windows media player on the left and a
> >> >list
> >> >of
> >> > movies on the right. When a movie is clicked it starts playing in the
> >> > player
> >> > on the left side og the page. No new player opens it just plays any
> >> > movie
> >> > selected from the list. Any ideas appreciated.
> >>
> >>
> >>
>
>
>

Re: Windows media player multable secections by citizenwp

citizenwp
Thu Feb 16 20:20:46 CST 2006

Same question.
Hope to solve this question.

Thanks.


--Terry
"Sell a man a fish, he eats for a day, teach a man how to fish, you
ruin a
wonderful business opportunity." Karl Marx
http://www.flash-on-tv.com/


Re: Windows media player multable secections by Tom

Tom
Thu Feb 16 21:03:52 CST 2006

By deleting the content of the original post, many of us do not know what
you are asking.
--
Tom [Pepper] Willett
Microsoft MVP - FrontPage
FrontPage Support: http://www.frontpagemvps.com/
----------
<citizenwp@gmail.com> wrote in message
news:1140142846.186124.239780@o13g2000cwo.googlegroups.com...
> Same question.
> Hope to solve this question.
>
> Thanks.
>
>
> --Terry



RE: Windows media player multable secections by Dick

Dick
Fri Feb 17 04:16:30 CST 2006

This site has what I would like to be able to do. http://www.andrew-umc.org/

"Dick" wrote:

> I would like to have page with windows media player on the left and a list of
> movies on the right. When a movie is clicked it starts playing in the player
> on the left side og the page. No new player opens it just plays any movie
> selected from the list. Any ideas appreciated.

Re: Windows media player multable secections by Charles

Charles
Fri Feb 17 10:14:29 CST 2006

Dick,

this is quick and dirty, but works <G>.

hope it helps,
Charles


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content-Language" content="en-us" />
<title>Song 1</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
#left_col {
width: 260px;
position: absolute;
left: 0px;
top: 0px;
clear: left;
}
#page_content {
margin-left: 261px;
position: relative;
}
#container {
position: relative;
overflow: hidden;
left: 0px;
top: 0px;
width: 720px;
}
.bodystyle {
text-align:center;
}
</style>
<script type="text/javascript">
<!--

function SetSong1()
{
WindowsMediaPlayer1.URL = "Song1.asx";
WindowsMediaPlayer1.controls.play();
}
function SetSong2()
{
WindowsMediaPlayer1.URL = "Song2.asx";
WindowsMediaPlayer1.controls.play();
}

function FP_callJS() {//v1.0
eval(arguments[0]);
}
// -->
</script>

</head>
<body class="bodystyle">

<div id="container">
<div id="left_col">
<p>

<object classid="clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6"
id="WindowsMediaPlayer1">
<param name="URL" value="">
<param name="rate" value="1">
<param name="balance" value="0">
<param name="currentPosition" value="0">
<param name="defaultFrame" value>
<param name="playCount" value="1">
<param name="autoStart" value="0">
<param name="currentMarker" value="0">
<param name="invokeURLs" value="-1">
<param name="baseURL" value>
<param name="volume" value="50">
<param name="mute" value="0">
<param name="uiMode" value="full">
<param name="stretchToFit" value="0">
<param name="windowlessVideo" value="0">
<param name="enabled" value="-1">
<param name="enableContextMenu" value="-1">
<param name="fullScreen" value="0">
<param name="SAMIStyle" value>
<param name="SAMILang" value>
<param name="SAMIFilename" value>
<param name="captioningID" value>
<param name="enableErrorDialogs" value="0">
</object>
</p>
</div>
<div id="page_content">
<p>&nbsp;</p>
<p onclick="SetSong1()"><a href="#">Song 1</a></p>
<p onclick="SetSong2()"><a href="#">Song 2</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>
</div>

</body>

</html>

"Dick" <Dick@discussions.microsoft.com> wrote in message
news:6370CC4E-7613-4CD7-A600-F4C9378C9598@microsoft.com...
> What I find hard to grasp is how do all tha peices fit together the player
> and the play list. Do you have an example I could view?
>
> "Charles Ezzell (MSFT)" wrote:
>
>> I haven't used any of the other "playlists" type, but have started
>> looking
>> into them. I just create an asf file which points to the wma files I use
>> on
>> an MMS server. I also used in my setup a hidden media player object with
>> custom controls to stop and start the music, go to next & previous in the
>> play list, etc. For the few video's (usually slideshows) I've done for my
>> church, I just link them on separate pages & autostart them. I tried
>> using
>> flash, but had some problems with getting the music timed properly
>> (usually
>> it played too fast).
>>
>> Charles
>>
>> "Dick" <Dick@discussions.microsoft.com> wrote in message
>> news:9418DC72-436C-43DB-9D24-C12600DECBF0@microsoft.com...
>> > Thanks Charles, I'll try this. Have you ever heard of something called
>> > "Windows Media Metafiles" movie list? I think that may be another way
>> > to
>> > so
>> > this but have no idea where to start.
>> >
>> > "Charles Ezzell (MSFT)" wrote:
>> >
>> >> You have to embed a player object similar to this:
>> >> <object id="Player" height="0" width="0"
>> >> classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
>> >> <param name="URL" value="">
>> >> <param name="autoStart" value="0">
>> >> </object>
>> >>
>> >> (I think 0 is don't start automatically)
>> >> Then, add an onclick event of some sort to each "movie", where it does
>> >> something like this:
>> >> Player.URL = "movie.asx";
>> >> Player.controls.play();
>> >>
>> >> (this last <play()> may not be neccessary, didn't test). The movie may
>> >> start
>> >> with just feeding it the filename, but not sure.
>> >>
>> >>
>> >> hth,
>> >> Charles
>> >>
>> >>
>> >> "Dick" <Dick@discussions.microsoft.com> wrote in message
>> >> news:35C3D5B4-9FE0-4534-B141-2322DD3BF88D@microsoft.com...
>> >> >I would like to have page with windows media player on the left and a
>> >> >list
>> >> >of
>> >> > movies on the right. When a movie is clicked it starts playing in
>> >> > the
>> >> > player
>> >> > on the left side og the page. No new player opens it just plays any
>> >> > movie
>> >> > selected from the list. Any ideas appreciated.
>> >>
>> >>
>> >>
>>
>>
>>



Re: Windows media player multable secections by Dick

Dick
Fri Feb 17 14:56:28 CST 2006

Charles ,I am so sorry, some how I missed the entry where you sent the code,
until just now. Thank you very much for your help, I too am useing this for
my church's web site. http://www.fumcwl.org
I have copied the code to a new page in "Front Page" and placed 2 wmv files
in song 1 and 2. They start on click, but WMP opens in it's own window not in
the player embeded in the page. I must be doing something wrong?? Perhaps you
can advise me.

"Charles Ezzell (MSFT)" wrote:

> Dick,
>
> this is quick and dirty, but works <G>.
>
> hope it helps,
> Charles
>
>
> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
> <html xmlns="http://www.w3.org/1999/xhtml">
>
> <head>
> <meta http-equiv="Content-Language" content="en-us" />
> <title>Song 1</title>
> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
> <style type="text/css">
> #left_col {
> width: 260px;
> position: absolute;
> left: 0px;
> top: 0px;
> clear: left;
> }
> #page_content {
> margin-left: 261px;
> position: relative;
> }
> #container {
> position: relative;
> overflow: hidden;
> left: 0px;
> top: 0px;
> width: 720px;
> }
> ..bodystyle {
> text-align:center;
> }
> </style>
> <script type="text/javascript">
> <!--
>
> function SetSong1()
> {
> WindowsMediaPlayer1.URL = "Song1.asx";
> WindowsMediaPlayer1.controls.play();
> }
> function SetSong2()
> {
> WindowsMediaPlayer1.URL = "Song2.asx";
> WindowsMediaPlayer1.controls.play();
> }
>
> function FP_callJS() {//v1.0
> eval(arguments[0]);
> }
> // -->
> </script>
>
> </head>
> <body class="bodystyle">
>
> <div id="container">
> <div id="left_col">
> <p>
>
> <object classid="clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6"
> id="WindowsMediaPlayer1">
> <param name="URL" value="">
> <param name="rate" value="1">
> <param name="balance" value="0">
> <param name="currentPosition" value="0">
> <param name="defaultFrame" value>
> <param name="playCount" value="1">
> <param name="autoStart" value="0">
> <param name="currentMarker" value="0">
> <param name="invokeURLs" value="-1">
> <param name="baseURL" value>
> <param name="volume" value="50">
> <param name="mute" value="0">
> <param name="uiMode" value="full">
> <param name="stretchToFit" value="0">
> <param name="windowlessVideo" value="0">
> <param name="enabled" value="-1">
> <param name="enableContextMenu" value="-1">
> <param name="fullScreen" value="0">
> <param name="SAMIStyle" value>
> <param name="SAMILang" value>
> <param name="SAMIFilename" value>
> <param name="captioningID" value>
> <param name="enableErrorDialogs" value="0">
> </object>
> </p>
> </div>
> <div id="page_content">
> <p> </p>
> <p onclick="SetSong1()"><a href="#">Song 1</a></p>
> <p onclick="SetSong2()"><a href="#">Song 2</a></p>
> <p> </p>
> <p> </p>
> <p> </p>
> <p> </p>
> <p> </p>
> <p> </p>
> </div>
> </div>
>
> </body>
>
> </html>
>
> "Dick" <Dick@discussions.microsoft.com> wrote in message
> news:6370CC4E-7613-4CD7-A600-F4C9378C9598@microsoft.com...
> > What I find hard to grasp is how do all tha peices fit together the player
> > and the play list. Do you have an example I could view?
> >
> > "Charles Ezzell (MSFT)" wrote:
> >
> >> I haven't used any of the other "playlists" type, but have started
> >> looking
> >> into them. I just create an asf file which points to the wma files I use
> >> on
> >> an MMS server. I also used in my setup a hidden media player object with
> >> custom controls to stop and start the music, go to next & previous in the
> >> play list, etc. For the few video's (usually slideshows) I've done for my
> >> church, I just link them on separate pages & autostart them. I tried
> >> using
> >> flash, but had some problems with getting the music timed properly
> >> (usually
> >> it played too fast).
> >>
> >> Charles
> >>
> >> "Dick" <Dick@discussions.microsoft.com> wrote in message
> >> news:9418DC72-436C-43DB-9D24-C12600DECBF0@microsoft.com...
> >> > Thanks Charles, I'll try this. Have you ever heard of something called
> >> > "Windows Media Metafiles" movie list? I think that may be another way
> >> > to
> >> > so
> >> > this but have no idea where to start.
> >> >
> >> > "Charles Ezzell (MSFT)" wrote:
> >> >
> >> >> You have to embed a player object similar to this:
> >> >> <object id="Player" height="0" width="0"
> >> >> classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
> >> >> <param name="URL" value="">
> >> >> <param name="autoStart" value="0">
> >> >> </object>
> >> >>
> >> >> (I think 0 is don't start automatically)
> >> >> Then, add an onclick event of some sort to each "movie", where it does
> >> >> something like this:
> >> >> Player.URL = "movie.asx";
> >> >> Player.controls.play();
> >> >>
> >> >> (this last <play()> may not be neccessary, didn't test). The movie may
> >> >> start
> >> >> with just feeding it the filename, but not sure.
> >> >>
> >> >>
> >> >> hth,
> >> >> Charles
> >> >>
> >> >>
> >> >> "Dick" <Dick@discussions.microsoft.com> wrote in message
> >> >> news:35C3D5B4-9FE0-4534-B141-2322DD3BF88D@microsoft.com...
> >> >> >I would like to have page with windows media player on the left and a
> >> >> >list
> >> >> >of
> >> >> > movies on the right. When a movie is clicked it starts playing in
> >> >> > the
> >> >> > player
> >> >> > on the left side og the page. No new player opens it just plays any
> >> >> > movie
> >> >> > selected from the list. Any ideas appreciated.
> >> >>
> >> >>
> >> >>
> >>
> >>
> >>
>
>
>

RE: Windows media player multable secections by Dick

Dick
Fri Feb 17 15:16:27 CST 2006

To Charles, It works! I just discovered where I needed to enter the WMV names
in the code to make them open in the embeded player. Thanks again for your
help.

"Dick" wrote:

> This site has what I would like to be able to do. http://www.andrew-umc.org/
>
> "Dick" wrote:
>
> > I would like to have page with windows media player on the left and a list of
> > movies on the right. When a movie is clicked it starts playing in the player
> > on the left side og the page. No new player opens it just plays any movie
> > selected from the list. Any ideas appreciated.

Re: Windows media player multable secections by DI

DI
Fri Feb 17 17:39:19 CST 2006

Dick,
Check my page
How to set up Streaming Audio in your FrontPage Web
Easily embed Audio and Video into your Web pages.
http://dtiwebs.com/streaming.htm


"Dick" <Dick@discussions.microsoft.com> wrote in message
news:CD2F4AE5-B2D8-4C36-A964-E07A45FB816B@microsoft.com...
> Charles ,I am so sorry, some how I missed the entry where you sent the
> code,
> until just now. Thank you very much for your help, I too am useing this
> for
> my church's web site. http://www.fumcwl.org
> I have copied the code to a new page in "Front Page" and placed 2 wmv
> files
> in song 1 and 2. They start on click, but WMP opens in it's own window not
> in
> the player embeded in the page. I must be doing something wrong?? Perhaps
> you
> can advise me.
>
> "Charles Ezzell (MSFT)" wrote:
>
>> Dick,
>>
>> this is quick and dirty, but works <G>.
>>
>> hope it helps,
>> Charles
>>
>>
>> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
>> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
>> <html xmlns="http://www.w3.org/1999/xhtml">
>>
>> <head>
>> <meta http-equiv="Content-Language" content="en-us" />
>> <title>Song 1</title>
>> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"
>> />
>> <style type="text/css">
>> #left_col {
>> width: 260px;
>> position: absolute;
>> left: 0px;
>> top: 0px;
>> clear: left;
>> }
>> #page_content {
>> margin-left: 261px;
>> position: relative;
>> }
>> #container {
>> position: relative;
>> overflow: hidden;
>> left: 0px;
>> top: 0px;
>> width: 720px;
>> }
>> ..bodystyle {
>> text-align:center;
>> }
>> </style>
>> <script type="text/javascript">
>> <!--
>>
>> function SetSong1()
>> {
>> WindowsMediaPlayer1.URL = "Song1.asx";
>> WindowsMediaPlayer1.controls.play();
>> }
>> function SetSong2()
>> {
>> WindowsMediaPlayer1.URL = "Song2.asx";
>> WindowsMediaPlayer1.controls.play();
>> }
>>
>> function FP_callJS() {//v1.0
>> eval(arguments[0]);
>> }
>> // -->
>> </script>
>>
>> </head>
>> <body class="bodystyle">
>>
>> <div id="container">
>> <div id="left_col">
>> <p>
>>
>> <object classid="clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6"
>> id="WindowsMediaPlayer1">
>> <param name="URL" value="">
>> <param name="rate" value="1">
>> <param name="balance" value="0">
>> <param name="currentPosition" value="0">
>> <param name="defaultFrame" value>
>> <param name="playCount" value="1">
>> <param name="autoStart" value="0">
>> <param name="currentMarker" value="0">
>> <param name="invokeURLs" value="-1">
>> <param name="baseURL" value>
>> <param name="volume" value="50">
>> <param name="mute" value="0">
>> <param name="uiMode" value="full">
>> <param name="stretchToFit" value="0">
>> <param name="windowlessVideo" value="0">
>> <param name="enabled" value="-1">
>> <param name="enableContextMenu" value="-1">
>> <param name="fullScreen" value="0">
>> <param name="SAMIStyle" value>
>> <param name="SAMILang" value>
>> <param name="SAMIFilename" value>
>> <param name="captioningID" value>
>> <param name="enableErrorDialogs" value="0">
>> </object>
>> </p>
>> </div>
>> <div id="page_content">
>> <p> </p>
>> <p onclick="SetSong1()"><a href="#">Song 1</a></p>
>> <p onclick="SetSong2()"><a href="#">Song 2</a></p>
>> <p> </p>
>> <p> </p>
>> <p> </p>
>> <p> </p>
>> <p> </p>
>> <p> </p>
>> </div>
>> </div>
>>
>> </body>
>>
>> </html>
>>
>> "Dick" <Dick@discussions.microsoft.com> wrote in message
>> news:6370CC4E-7613-4CD7-A600-F4C9378C9598@microsoft.com...
>> > What I find hard to grasp is how do all tha peices fit together the
>> > player
>> > and the play list. Do you have an example I could view?
>> >
>> > "Charles Ezzell (MSFT)" wrote:
>> >
>> >> I haven't used any of the other "playlists" type, but have started
>> >> looking
>> >> into them. I just create an asf file which points to the wma files I
>> >> use
>> >> on
>> >> an MMS server. I also used in my setup a hidden media player object
>> >> with
>> >> custom controls to stop and start the music, go to next & previous in
>> >> the
>> >> play list, etc. For the few video's (usually slideshows) I've done for
>> >> my
>> >> church, I just link them on separate pages & autostart them. I tried
>> >> using
>> >> flash, but had some problems with getting the music timed properly
>> >> (usually
>> >> it played too fast).
>> >>
>> >> Charles
>> >>
>> >> "Dick" <Dick@discussions.microsoft.com> wrote in message
>> >> news:9418DC72-436C-43DB-9D24-C12600DECBF0@microsoft.com...
>> >> > Thanks Charles, I'll try this. Have you ever heard of something
>> >> > called
>> >> > "Windows Media Metafiles" movie list? I think that may be another
>> >> > way
>> >> > to
>> >> > so
>> >> > this but have no idea where to start.
>> >> >
>> >> > "Charles Ezzell (MSFT)" wrote:
>> >> >
>> >> >> You have to embed a player object similar to this:
>> >> >> <object id="Player" height="0" width="0"
>> >> >> classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
>> >> >> <param name="URL" value="">
>> >> >> <param name="autoStart" value="0">
>> >> >> </object>
>> >> >>
>> >> >> (I think 0 is don't start automatically)
>> >> >> Then, add an onclick event of some sort to each "movie", where it
>> >> >> does
>> >> >> something like this:
>> >> >> Player.URL = "movie.asx";
>> >> >> Player.controls.play();
>> >> >>
>> >> >> (this last <play()> may not be neccessary, didn't test). The movie
>> >> >> may
>> >> >> start
>> >> >> with just feeding it the filename, but not sure.
>> >> >>
>> >> >>
>> >> >> hth,
>> >> >> Charles
>> >> >>
>> >> >>
>> >> >> "Dick" <Dick@discussions.microsoft.com> wrote in message
>> >> >> news:35C3D5B4-9FE0-4534-B141-2322DD3BF88D@microsoft.com...
>> >> >> >I would like to have page with windows media player on the left
>> >> >> >and a
>> >> >> >list
>> >> >> >of
>> >> >> > movies on the right. When a movie is clicked it starts playing in
>> >> >> > the
>> >> >> > player
>> >> >> > on the left side og the page. No new player opens it just plays
>> >> >> > any
>> >> >> > movie
>> >> >> > selected from the list. Any ideas appreciated.
>> >> >>
>> >> >>
>> >> >>
>> >>
>> >>
>> >>
>>
>>
>>



Re: Windows media player multable secections by Charles

Charles
Fri Feb 17 20:12:56 CST 2006

Dick,

Glad it worked. My major problem has been that for some reason media player
needs EXACT spelling to play (at least for the asf files).

IE - if I save the asf as SoNG1.aSF, I had better put this in there, as
song1.asf won't work.

Luckily I get to play with this, as I do it for our children's ministry, and
they don't really care that it doesn't look 100% professional, since it's
for the children.

This page isn't live yet (it's actually going to be in a frame underneath
some other pages, but it's what I've been working on. I need to finish
embedding the CD and copyright information into the wma files.
http://www.carmelbaptist.org/edifying/carmelchildren/KidStuf/test.html

It "should" end up similar to this when it's done:
http://www.carmelbaptist.org/edifying/carmelchildren/KidStuf/febmusic.html

(hopefully better, but I do have a day job)

Charles

"Dick" <Dick@discussions.microsoft.com> wrote in message
news:A742C9C6-3100-4CDE-BD97-AB2C190F8418@microsoft.com...
> To Charles, It works! I just discovered where I needed to enter the WMV
> names
> in the code to make them open in the embeded player. Thanks again for your
> help.
>
> "Dick" wrote:
>
>> This site has what I would like to be able to do.
>> http://www.andrew-umc.org/
>>
>> "Dick" wrote:
>>
>> > I would like to have page with windows media player on the left and a
>> > list of
>> > movies on the right. When a movie is clicked it starts playing in the
>> > player
>> > on the left side og the page. No new player opens it just plays any
>> > movie
>> > selected from the list. Any ideas appreciated.



Re: Windows media player multable secections by Dick

Dick
Sat Feb 18 10:11:29 CST 2006

Charles, I thought I had this opening in the embeded player but I am no
longer able to duplicate the result. Her is my modified code can you see
where I am going wrong?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content-Language" content="en-us" />
<title>Song 1</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
#left_col {
width: 260px;
position: absolute;
left: 0px;
top: 0px;
clear: left;
}
#page_content {
margin-left: 261px;
position: relative;
}
#container {
position: relative;
overflow: hidden;
left: 0px;
top: 0px;
width: 720px;
}
..bodystyle {
text-align:center;
}
</style>
<script type="text/javascript">
<!--

function SetSong1()
{
WindowsMediaPlayer1.URL = "susansolo021206.wmv";
WindowsMediaPlayer1.controls.play();
}
function SetSong2()
{
WindowsMediaPlayer1.URL = "susansolo021206.wmv";
WindowsMediaPlayer1.controls.play();
}

function FP_callJS() {//v1.0
eval(arguments[0]);
}
// -->
</script>

</head>
<body class="bodystyle">

<div id="container">
<div id="left_col">
<p>

<object classid="clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6"
id="WindowsMediaPlayer1">
<param name="URL" value="">
<param name="rate" value="1">
<param name="balance" value="0">
<param name="currentPosition" value="0">
<param name="defaultFrame" value>
<param name="playCount" value="1">
<param name="autoStart" value="0">
<param name="currentMarker" value="0">
<param name="invokeURLs" value="-1">
<param name="baseURL" value>
<param name="volume" value="50">
<param name="mute" value="0">
<param name="uiMode" value="full">
<param name="stretchToFit" value="0">
<param name="windowlessVideo" value="0">
<param name="enabled" value="-1">
<param name="enableContextMenu" value="-1">
<param name="fullScreen" value="0">
<param name="SAMIStyle" value>
<param name="SAMILang" value>
<param name="SAMIFilename" value>
<param name="captioningID" value>
<param name="enableErrorDialogs" value="0">
</object>
</p>
</div>
<div id="page_content">
<p> </p>
<p onclick="SetSong1()"><a href="susansolo021206.wmv">Song 1</a></p>
<p onclick="SetSong2()"><a href="SonshineKids021206.wmv">Song 2</a></p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
</div>
</div>

</body>

</html>


"Charles Ezzell (MSFT)" wrote:

> Dick,
>
> Glad it worked. My major problem has been that for some reason media player
> needs EXACT spelling to play (at least for the asf files).
>
> IE - if I save the asf as SoNG1.aSF, I had better put this in there, as
> song1.asf won't work.
>
> Luckily I get to play with this, as I do it for our children's ministry, and
> they don't really care that it doesn't look 100% professional, since it's
> for the children.
>
> This page isn't live yet (it's actually going to be in a frame underneath
> some other pages, but it's what I've been working on. I need to finish
> embedding the CD and copyright information into the wma files.
> http://www.carmelbaptist.org/edifying/carmelchildren/KidStuf/test.html
>
> It "should" end up similar to this when it's done:
> http://www.carmelbaptist.org/edifying/carmelchildren/KidStuf/febmusic.html
>
> (hopefully better, but I do have a day job)
>
> Charles
>
> "Dick" <Dick@discussions.microsoft.com> wrote in message
> news:A742C9C6-3100-4CDE-BD97-AB2C190F8418@microsoft.com...
> > To Charles, It works! I just discovered where I needed to enter the WMV
> > names
> > in the code to make them open in the embeded player. Thanks again for your
> > help.
> >
> > "Dick" wrote:
> >
> >> This site has what I would like to be able to do.
> >> http://www.andrew-umc.org/
> >>
> >> "Dick" wrote:
> >>
> >> > I would like to have page with windows media player on the left and a
> >> > list of
> >> > movies on the right. When a movie is clicked it starts playing in the
> >> > player
> >> > on the left side og the page. No new player opens it just plays any
> >> > movie
> >> > selected from the list. Any ideas appreciated.
>
>
>

Re: Windows media player multable secections by Charles

Charles
Sat Feb 18 12:11:13 CST 2006

these 2 lines:
<p onclick="SetSong1()"><a href="susansolo021206.wmv">Song 1</a></p>
<p onclick="SetSong2()"><a href="SonshineKids021206.wmv">Song 2</a></p>

are the problem. Its opening it in a new window.
change to:
<p onclick="SetSong1()"><a href="#">Song 1</a></p>
<p onclick="SetSong2()"><a href="#">Song 2</a></p>

and this
function SetSong2()
{
WindowsMediaPlayer1.URL = "susansolo021206.wmv";
WindowsMediaPlayer1.controls.play();
}
probably should be this:
function SetSong2()
{
WindowsMediaPlayer1.URL = "SonshineKids021206.wmv"";
WindowsMediaPlayer1.controls.play();
}
for your 2nd song.

You only want to put the wmv file reference in the setsong functions. The #
sign I put in the <a href> section just to underline the link and bring up a
hand cursor. There are other ways of doing it. You don't want to put a real
href here. Some trick I picked up someplace. Probably here.

Charles


"Dick" <Dick@discussions.microsoft.com> wrote in message
news:21E4C00D-93FD-4CCA-968D-7EA22706842B@microsoft.com...
> Charles, I thought I had this opening in the embeded player but I am no
> longer able to duplicate the result. Her is my modified code can you see
> where I am going wrong?
>
> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
> <html xmlns="http://www.w3.org/1999/xhtml">
>
> <head>
> <meta http-equiv="Content-Language" content="en-us" />
> <title>Song 1</title>
> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
> <style type="text/css">
> #left_col {
> width: 260px;
> position: absolute;
> left: 0px;
> top: 0px;
> clear: left;
> }
> #page_content {
> margin-left: 261px;
> position: relative;
> }
> #container {
> position: relative;
> overflow: hidden;
> left: 0px;
> top: 0px;
> width: 720px;
> }
> ..bodystyle {
> text-align:center;
> }
> </style>
> <script type="text/javascript">
> <!--
>
> function SetSong1()
> {
> WindowsMediaPlayer1.URL = "susansolo021206.wmv";
> WindowsMediaPlayer1.controls.play();
> }
> function SetSong2()
> {
> WindowsMediaPlayer1.URL = "susansolo021206.wmv";
> WindowsMediaPlayer1.controls.play();
> }
>
> function FP_callJS() {//v1.0
> eval(arguments[0]);
> }
> // -->
> </script>
>
> </head>
> <body class="bodystyle">
>
> <div id="container">
> <div id="left_col">
> <p>
>
> <object classid="clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6"
> id="WindowsMediaPlayer1">
> <param name="URL" value="">
> <param name="rate" value="1">
> <param name="balance" value="0">
> <param name="currentPosition" value="0">
> <param name="defaultFrame" value>
> <param name="playCount" value="1">
> <param name="autoStart" value="0">
> <param name="currentMarker" value="0">
> <param name="invokeURLs" value="-1">
> <param name="baseURL" value>
> <param name="volume" value="50">
> <param name="mute" value="0">
> <param name="uiMode" value="full">
> <param name="stretchToFit" value="0">
> <param name="windowlessVideo" value="0">
> <param name="enabled" value="-1">
> <param name="enableContextMenu" value="-1">
> <param name="fullScreen" value="0">
> <param name="SAMIStyle" value>
> <param name="SAMILang" value>
> <param name="SAMIFilename" value>
> <param name="captioningID" value>
> <param name="enableErrorDialogs" value="0">
> </object>
> </p>
> </div>
> <div id="page_content">
> <p> </p>
> <p onclick="SetSong1()"><a href="susansolo021206.wmv">Song 1</a></p>
> <p onclick="SetSong2()"><a href="SonshineKids021206.wmv">Song 2</a></p>
> <p> </p>
> <p> </p>
> <p> </p>
> <p> </p>
> <p> </p>
> <p> </p>
> </div>
> </div>
>
> </body>
>
> </html>
>
>
> "Charles Ezzell (MSFT)" wrote:
>
>> Dick,
>>
>> Glad it worked. My major problem has been that for some reason media
>> player
>> needs EXACT spelling to play (at least for the asf files).
>>
>> IE - if I save the asf as SoNG1.aSF, I had better put this in there, as
>> song1.asf won't work.
>>
>> Luckily I get to play with this, as I do it for our children's ministry,
>> and
>> they don't really care that it doesn't look 100% professional, since it's
>> for the children.
>>
>> This page isn't live yet (it's actually going to be in a frame underneath
>> some other pages, but it's what I've been working on. I need to finish
>> embedding the CD and copyright information into the wma files.
>> http://www.carmelbaptist.org/edifying/carmelchildren/KidStuf/test.html
>>
>> It "should" end up similar to this when it's done:
>> http://www.carmelbaptist.org/edifying/carmelchildren/KidStuf/febmusic.html
>>
>> (hopefully better, but I do have a day job)
>>
>> Charles
>>
>> "Dick" <Dick@discussions.microsoft.com> wrote in message
>> news:A742C9C6-3100-4CDE-BD97-AB2C190F8418@microsoft.com...
>> > To Charles, It works! I just discovered where I needed to enter the WMV
>> > names
>> > in the code to make them open in the embeded player. Thanks again for
>> > your
>> > help.
>> >
>> > "Dick" wrote:
>> >
>> >> This site has what I would like to be able to do.
>> >> http://www.andrew-umc.org/
>> >>
>> >> "Dick" wrote:
>> >>
>> >> > I would like to have page with windows media player on the left and
>> >> > a
>> >> > list of
>> >> > movies on the right. When a movie is clicked it starts playing in
>> >> > the
>> >> > player
>> >> > on the left side og the page. No new player opens it just plays any
>> >> > movie
>> >> > selected from the list. Any ideas appreciated.
>>
>>
>>



Re: Windows media player multable secections by Dick

Dick
Sat Feb 18 13:16:27 CST 2006

I made those changes and they worked! I don't know much about