Ver Mensaje Individual
  #1 (permalink)  
Antiguo 12/06/2006, 01:38
charlierun
 
Fecha de Ingreso: enero-2006
Mensajes: 51
Antigüedad: 18 años, 3 meses
Puntos: 0
Ayuda Urgentisima

HOLA TENGO UN MOVIE EN FLASH KE ME CREA DINAMICAMENTE MOVIES CON DATOS KE EXTRAE DE UN PHP, DENTRO DE ESTA MOVIE TB CREA UN BOTON
KE SE SUPONE KE TIENE KE MANDAR DICHOS DATOS A OTRO PHP,LO KE
PASA ES KE KUAN PRESIONO SOBRE EL BOTON ESTE NO ENVIA LOS DATOS
POR POST, NO SE SI ES POR KE LO PONGO MAL O ESTO NO ES
REALIZABLE DENTRO DE UN ATTACHMOVIE;


pedido.onLoad = function(exito) {
if (exito) {

var lineas=this["n"];
var i;

for (i=0;i<lineas;i++){

var nom = display_mc.list_mc.attachMovie("boton_pedido1",
"boton_pedido" + i, i + 1 ,{_x: inicioX, _y: inicioY + (separacionVertical * (i))});
nom.id_cliente.text = this["id_cliente" + i];
nom.id_pedido.text = this["id_pedido" + i];
nom.fecha.text = this["fecha" + i];
nom.nombre.text = this["nom_envio" + i];

//ESTO ES LO KE NO FUNCIONA
nom.aceptar.onRelease = function (){


tramitar.id_cliente=nom.id_cliente.text ;
tramitar.id_pedido=nom.id_pedido.text ;
tramitar.send("tramitar.php","POST");


}
GRACIAS ..................