okay, here is the solution
var connection_nc:NetConnection = new NetConnection();
// Put the RTMP URL here, leaving off the name of the video:
connection_nc.connect("rtmp://xxxxx-ns.xxxxxxxxx.com/ondemand/media/banner/20090325");
var stream_ns:NetStream = new NetStream(connection_nc);
myVideo.attachVideo(stream_ns);
// Put the name of the FLV here *WITHOUT* ".flv" at the end:
stream_ns.play("728x90");