Ver Mensaje Individual
  #1 (permalink)  
Antiguo 08/12/2005, 08:13
miguellara
 
Fecha de Ingreso: octubre-2003
Mensajes: 304
Antigüedad: 20 años, 6 meses
Puntos: 0
Pregunta Pasar variables desde SWF a PHP vía URL

Buenas, ¿Alguien sabe como puedo pasar variables desde flash a php vía url??

Estoy probando con esto, pero no resulta:

Código HTML:
boton.onRelease=function(){
           var Id = 1;
	   getURL("archivo_receptor.php", "_blank", "GET");
   };
También intenté con:
Código HTML:
boton.onRelease=function(){
	   getURL("archivo_receptor.php?Id=1", "_blank", "GET");
   };


GRACIAAAAAAAAAAS!