Amigos sigo en las mismas y no encuentro salida
las modificaciones que le hice al código son estas:
Código:
showVideo = function(succes)
{
if(succes)
{
if(this.output == "ok")
{
path = this.vdata;
my_vid.play(path);
} else {
videoText.text = "Error Video no fount "+this.msg;
}
} else {
videoText.text = "Error of the load video";
}
}
videoDetails = function(id)
{
var db_video = new LoadVars();
db_video.id = id;
db_video.onLoad = showVideo;
db_video.sendAndLoad("http://localhost/wincool/admin/video2.php?id="+id,db_video,"GET");
//db_video.load("http://localhost/wincool/admin/video2.php?id="+id);
}
thisVideo = function(succes){
if(succes)
{
id = this.id;
videoDetails(id);
videoText.text = id;
}
}
theVideo = function(id){
var data_db:LoadVars = new LoadVars();
data_db.id = id;
data_db.onLoad = thisVideo;
data_db.sendAndLoad("http://localhost/wincool/admin/producten_vie.php?id="+id,data_db,"POST");
}
theVideo(id);
la función theVideo(id) no logra recoger ninguna id.... no hay forma de volverla global,
y el programa esta echo con GET en php así que la única que veo es que recoga el
y me cargue el vídeo.