[/code]var videoTexture = new VideoTexture("test.flv",512,512,true,true);
var textureMaterial = new TextureMaterial(videoTexture);
var planeGeom = new PlaneGeometry(200,200,1,1,false);
var planeMesh = new Mesh(planeGeom,textureMaterial);
planeMesh.z = -100;
planeMesh.y = 25;
textureMaterial.smooth = true;
textureMaterial.alphaBlending = true;
_container.addChild(planeMesh);
videoTexture.player.play();[code]
The Above will allow me to display my FLV file but i dont how to have a listener for preloading(bufferfull)...ideally i want this method
I have also tried doing the generic NS stream as3 so i can detect its meta-data but cant put this stream onto my video material, throws errors:cant convert at away.3d ::::
I really need some help.
Thanks