The attatchments didn't seem to work, but I managed to fix the problem
by having the video autoplay instead of calling the load method to
start the buffering.  Thanks anyways,

-John

--- In flexcoders@yahoogroups.com, "Bruno Martins" <[EMAIL PROTECTED]> wrote:
>
> Hi, I made this component, but now I don't have time to organize in
a simple
> example, but I hope to help you.
> 
> On 1/3/07, john_69_11 <[EMAIL PROTECTED]> wrote:
> >
> >   I'm using the VideoDisplay component so it works a little
differently.
> > If the video is paused calling pause again does nothing, you have to
> > call play to restart the video. Maybe I'll try switching over the NS
> > and NC and see if it works that way, unless someone has a solution
> > with the VideoDisplay.
> >
> > Thanks,
> >
> > John
> >
> > --- In flexcoders@yahoogroups.com <flexcoders%40yahoogroups.com>,
Thijs
> > Triemstra <lists@> wrote:
> > >
> > > I guess you start and pause the flv so it can preload? You should
> > > unpause the video instead of using play again because otherwise the
> > > buffered netstream is replaced with a new one like you described.
> > >
> > > stream = new NetStream(nc);
> > > // start preloading
> > > stream.play("flvname");
> > > // pause the stream so it can continue preloading without playback
> > > stream.pause(true);
> > > // when you press play it unpauses and starts playing the buffered
> > > stream
> > > stream.pause(false);
> > >
> > >
> > > Thijs
> > >
> > >
> > > Op 2-jan-2007, om 22:49 heeft john_69_11 het volgende geschreven:
> > >
> > > > Hi, I'm trying to put together an flv player with a progress
bar and
> > > > videodisplay object. I am using the progress event and when the
> > > > player first loads the progress shows fine, but when i hit the
play
> > > > button (calling videoDisplay.play()) it throws away the buffer and
> > > > starts over. This only happens the first time I hit play. any
ideas?
> > > >
> > > > Thanks,
> > > >
> > > > John
> > > >
> > > >
> > > >
> > >
> >
> > 
> >
> 
> 
> 
> -- 
> Bruno Gustavo Martins
> Office: (11)3443-9527
> experience everywhere
> http://www.dclick.com.br/blog
>


Reply via email to