Video issue

Hi there,
Im trying to load a simple video but for some reason im getting a strange error
There is no method with the name ‘attachNetStream’
it should be a very simple code and here it is:


var videoConnection:NetConnection = new NetConnction();
videoConnection.connect(null);
var videoStream:NetStream = new NetStream(videoConnection);
videoStream.play("video1.flv");
var video:Video = new Video();
video.attachNetStream(videoStream);
addChild(video);

any idea whats wrong ?