Using the code below i can get video to play within the IOS simulator within FlashBuilder but not on the iPad itself.
Any ideas?
//video texture
var vt:VideoTexture = new VideoTexture("PicassoPtgOnGlass8fps_1_1.flv", 256, 256, true,true);
var tm:TextureMaterial = new TextureMaterial(vt, true);
var planeGeom:PlaneGeometry = new PlaneGeometry(1024, 730, 1, 1, false, true);
planeMesh = new Mesh(planeGeom, tm);
scene.addChild(planeMesh);
planeMesh.y=365;
videoMaterial = new TextureMaterial(videoBitmapTexture = new BitmapTexture(new BitmapData(512, 512, true, 0xFFFF0000)), false, true);