im attaching the video
this.my_video.attachVideo(stream_ns);
how can i add a listener like the MovieClipLoader property :
var oListener:Object = new Object();
this.createEmptyMovieClip("mClip",this.getNextHighestDepth());
var mcl:MovieClipLoader = new MovieClipLoader();
mcl.addListener(oListener);//important this is after the MovieClipLoader
oListener.onLoadInit = function(mClip:MovieClip):Void {
trace(mClip+" initialized");
};
mcl.loadClip("http://www-as.harvard.edu/chemistry/trop/img/NASA_Logo.gif",mClip);