From: Nicholas Hart <[EMAIL PROTECTED]> Subject: RE: dynamically changing video streams in an embedded player using I think you are making this more complex than you need. Both the ActiveX control and Netscape plugin support the SetSource function. Your code should work fine like this: document.realPlayer.SetSource(filename); At 08:54 AM 9/8/99 -0700, you wrote: >From: "Simpson, Scott" <[EMAIL PROTECTED]> >Subject: RE: dynamically changing video streams in an embedded player usin > >this is some code that i know works=> > >if(is_ie) > document.realPlayer.Source = filename; >else if(is_ns) > document.realPlayer.SetSource(filename); > >document.realPlayer.DoPlay(); > >that should do it, >s.s.
