Ver Mensaje Individual
  #1 (permalink)  
Antiguo 03/01/2010, 00:11
topcat_42
 
Fecha de Ingreso: julio-2009
Mensajes: 66
Antigüedad: 14 años, 9 meses
Puntos: 1
Leer cuadro de texto (textbox)

Bien miren necesito leer un texto que teclea el usuario con su mail, y mandarlos por link a un PHP.

Lo que no se es como capturar (leer) el mail del usuario.

Código HTML:
stop();

boton2_mc.addEventListener(MouseEvent.CLICK, clicky2);

var str:String = email_bot.text

function clicky2(event:MouseEvent):void{
	
	var iraURL:URLRequest = new URLRequest("http://www.miurl.com/mail.php?mail="+str);
	
	navigateToURL(iraURL,"_top");
	
	gotoAndStop("inicio");
	
}

boton3_mc.addEventListener(MouseEvent.CLICK, salir);

function salir(event:MouseEvent):void{
	
	gotoAndStop("inicio");
	
}
Mi cuadro de texto se llama email_bot

La variable str es donde se supone ira el mail del usuario

AUXILIO que ya casi termino