# Flash 8 FLV Component refresh problem!

**URL:** https://forum.kirupa.com/t/flash-8-flv-component-refresh-problem/266318
**Category:** flash
**Created:** [July 18, 2008, 10:18am UTC](https://forum.kirupa.com/t/flash-8-flv-component-refresh-problem/266318 "2008-07-18T10:18:36Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Brendz](https://avatars.discourse-cdn.com/v4/letter/b/5e9695/32.png) [@Brendz](https://forum.kirupa.com/u/Brendz)
#### Post date: [July 18, 2008, 10:18am UTC](https://forum.kirupa.com/t/flash-8-flv-component-refresh-problem/266318/1 "2008-07-18T10:18:36Z")

</div>

Hi,

I’m using the flash 8 FLV component to dynamic load multiple videos into one instance of the FLV component which is on the stage inside a movieclip called thumbnail. The problem I hope someone can help me with is when I load another video to replace the existing one, the old one appears to still play for 1-2 seconds (Still in buffer??) and the new one plays.

I start off my loading a movie using:

thumbnail.thumb\_flvcom.contentPath = “file path of the video”;  
thumbnail.thumb\_flvcom.play();

And stopping the movie using:

```
          if (_root.thumbnail.thumb_flvcom.state == FLVPlayback.PLAYING || _root.thumbnail.thumb_flvcom.state == FLVPlayback.PAUSED || _root.thumbnail.thumb_flvcom.state == FLVPlayback.SEEKING) {
                      _root.thumbnail.thumb_flvcom.stop();
          }

```

Any ideas would be appreciated!  
Brendz
