Loading external video

I have a video called meme.flv its in same folder as the fla

i want to import the external video into my fla and play

this is my code…which is getting errors after a few tries…

import fl.video.VideoEvent;

var loader:Loader = new Loader();
loader.load(new URLRequest(“meme.flv”));

loader.addEventListener(VideoEvent.COMPLETE, testing);

function testing(e:VideoEvent):void
{
this.addChild(loader);
}

** what i want to do is load the external video onto the stage

              Thank you