Your solution works now... Thank you very much!

On 28 okt, 02:40, "Mike Alsup" <[EMAIL PROTECTED]> wrote:
> > Hi Mike!
>
> > Thanks for your answer! Your plugin is great!
>
> > I have changed the code. But still nothing happens in IE...
>
> > Any suggestions?
>
> > On 27 okt, 16:20, "Mike Alsup" <[EMAIL PROTECTED]> wrote:
> > > > I created an embedded windows media player object with the jquery
> > > > media-plugin. This object has id="wmplayer" and plays a stream on my
> > > > page. This works very well. But now I want to play the stream
> > > > fullscreen.
>
> > > > This is what I did:
>
> > > > (on page):
> > > > <span id="fullscreen">play fullscreen</span>
>
> > > > (jquery):
> > > > $('#fullscreen').click(function() {wmplayer.displaySize = 3;});
>
> > > > But now nothing happens. It looks like the function doesn't recognize
> > > > #wmplayer....
>
> > > That might work in IE, but not in any other browser.  Try this instead:
>
> > > $('#fullscreen').click(function() {
> > >     $('#wmplayer')[0].displaySize = 3;
>
> > > });- Tekst uit oorspronkelijk bericht niet weergeven -
>
> > > - Tekst uit oorspronkelijk bericht weergeven -
>
> Have you tried setting the fullscreen prop?
>
> $('#fullscreen').click(function() {
>     $('#wmplayer')[0].fullScreen = true;
>     return false;});

Reply via email to