# Attaching external FLV to Video Object via ASI've been reading a few articles, and th

**URL:** https://forum.kirupa.com/t/attaching-external-flv-to-video-object-via-asive-been-reading-a-few-articles-and-th/254354
**Category:** flash
**Created:** [March 11, 2008, 7:52am UTC](https://forum.kirupa.com/t/attaching-external-flv-to-video-object-via-asive-been-reading-a-few-articles-and-th/254354 "2008-03-11T07:52:45Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Alex\_Grim](https://avatars.discourse-cdn.com/v4/letter/a/8e7dd6/32.png) [@Alex\_Grim](https://forum.kirupa.com/u/Alex_Grim)
#### Post date: [March 11, 2008, 7:52am UTC](https://forum.kirupa.com/t/attaching-external-flv-to-video-object-via-asive-been-reading-a-few-articles-and-th/254354/1 "2008-03-11T07:52:45Z")

</div>

I’ve been reading a few articles, and they are all suggesting that this is done in just a certain way, and they all seem to be uniform in the way that they are explaining how to do this (probably because most of them are from Adobe), but i cannot seem to get this one working…

In my time line i have a Video object with an instance name of “myVideo”, and in that same frame, but in my actions layer, i have the following code that is supposed to load the video from the same folder as the swf:

```php
var nc:NetConnection = new NetConnection();

nc.connect(null);

var ns:NetStream = new NetStream(nc);

myVideo.attachVideo(ns);

ns.play("Video-1.flv");

```

But when you get to this spot, there is no video…
