# FLV component controls dont work?

**URL:** https://forum.kirupa.com/t/flv-component-controls-dont-work/244364
**Category:** Uncategorized
**Created:** [November 16, 2007, 8:13pm UTC](https://forum.kirupa.com/t/flv-component-controls-dont-work/244364 "2007-11-16T20:13:46Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![rondog](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/rondog/32/2478_2.png) [@rondog](https://forum.kirupa.com/u/rondog)
#### Post date: [November 16, 2007, 8:13pm UTC](https://forum.kirupa.com/t/flv-component-controls-dont-work/244364/1 "2007-11-16T20:13:46Z")

</div>

I have an instance of the FLV component on the stage with the name of ‘vidPlayer’. I then have this code loading the movie:

```auto

var theVid:Video = new Video();
vidPlayer.addChild(theVid);

var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
ns.addEventListener(AsyncErrorEvent.ASYNC_ERROR, asyncErrorEventHandler);
theVid.attachNetStream(ns);
ns.play(mediaPath+padNum+"001"+".flv");

function asyncErrorEventHandler(event:AsyncErrorEvent):void {
    // ignore
}

```

None of hte controls on the video work. Any idea why?
