reference : NetConnection , NetStream , Video
related topics : Working with Sound
Basic example of playing an external video file (FLV, MP4, F4V). Code will also play M4A audio files.
var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
va...