gracias por responder Fridureiks pero ese no era el problema, lo resolvi usando el siguiente codigo
Código:
video1=data.getItemAt(0).video;
if(video1!=""){
_root.attachMovie("FLVPlayback", "pvideo1", 3);
pvideo1.skin = "ArcticExternalPlaySeekMute.swf"
pvideo1.contentPath = Path_Video+video1;
pvideo1.autoPlay=false;
pvideo1.maintainAspectRatio=true;
pvideo1.autoRewind=true;
pvideo1.autoSize=false;
pvideo1.bufferTime=5;
pvideo1.width=244;
pvideo1.height=183;
pvideo1.x=25;
pvideo1.y=154;
pvideo1.stop()
}
video2=data.getItemAt(0).video1;
if(video2!=""){
_root.attachMovie("FLVPlayback", "pvideo2", 2);
pvideo2.skin = "ArcticExternalPlaySeekMute.swf"
pvideo2.contentPath = Path_Video+video2;
pvideo2.autoPlay=false;
pvideo2.maintainAspectRatio=true;
pvideo2.autoRewind=true;
pvideo2.autoSize=false;
pvideo2.bufferTime=5;
pvideo2.width=244;
pvideo2.height=183;
pvideo2.x=25;
pvideo2.y=154;
pvideo2.stop()
pvideo2.enabled=false;
pvideo2.visible=false;
}
video3=data.getItemAt(0).video2;
if(video3!=""){
_root.attachMovie("FLVPlayback", "pvideo3", 1);
pvideo3.skin = "ArcticExternalPlaySeekMute.swf"
pvideo3.contentPath = Path_Video+video3;
pvideo3.autoPlay=false;
pvideo3.maintainAspectRatio=true;
pvideo3.autoRewind=true;
pvideo3.autoSize=false;
pvideo3.bufferTime=5;
pvideo3.width=244;
pvideo3.height=183;
pvideo3.x=25;
pvideo3.y=154;
pvideo3.stop()
pvideo3.enabled=false;
pvideo3.visible=false;
}
y luego con 3 botones activo o no cada uno de los players, y lo mejor es que no aumento el peso de la pelicula.
de todas maneras gracias. Saludos :)