Hi,
You can create a bindable model class, the bind this classes popupText to
each of your TextInput.text properties.
Mike
class Model
{
[Bindable]
public var sharedText:String = "";
}
... your control (not popup)
<mx:TextInput id="controlInput" text="{Model.getInstance().sharedText}"/>
... then in the popup
<mx:TextInput id="popUpInput" text="{Model.getInstance().sharedText}"/>
Mike
On Tue, Oct 21, 2008 at 8:48 AM, Giro <[EMAIL PROTECTED]> wrote:
> Is possible for example to make a input with a bindable text, but
> this text content come from another input text inside a component thas
> is used as popup?
>
> Thanks
> Giro
>
>
--
Teoti Graphix, LLC
http://www.teotigraphix.com
Teoti Graphix Blog
http://www.blog.teotigraphix.com
You can find more by solving the problem then by 'asking the question'.