var videoLoaderSettings:VideoLoaderVars = new VideoLoaderVars()
.autoPlay(true)
.width(500)
.height(400);
_videoLoader = new VideoLoader( _url, videoLoaderSettings );
_videoLoader .stageVideo = stage.stageVideos[0];
_videoLoader .load(true);
Normal video works perfect, but adding the stageVideo object does results in an invisible video, though it plays fine (I can hear the sound, and scrub etc.).
Switching to native netconnection/netstream/video code, stageVideo works just fine.
Any idea on what I am doing wrong with VideoLoader?