Ver Mensaje Individual
  #2 (permalink)  
Antiguo 08/08/2010, 22:24
Avatar de TMeister
TMeister
Crazy Coder
 
Fecha de Ingreso: enero-2002
Ubicación: En la Oficina
Mensajes: 2.880
Antigüedad: 22 años, 10 meses
Puntos: 193
Respuesta: Compartir Texto Con TextInputs

Algo así

Código XML:
Ver original
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
  3.                xmlns:s="library://ns.adobe.com/flex/spark"
  4.                xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
  5.     <s:TextInput id="one"/>
  6.     <s:TextInput id="two" text="{one.text}" y="30"/>
  7. </s:Application>

Solo hay que asignar el texto del primer capo al segundo. :)

Saludos!