Capho-
  Sorry, to elaborate more. You could have a canvas below the text
box that by default is set to visible=false...and then appears as
data comes back...something like this. Hope this helps get you
going....

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml">
<mx:Script>
<![CDATA[

function callIt()
{
      //call webservice
      //myList.dataprovider=...
}   
]]>
</mx:Script>
<mx:TextInput id="myTextBox" keyDown="callIt();"/>
<mx:Canvas visible="{myTextBox.text.length > 0}" width="100"
height="50">
  <mx:List id="myList" ></mx:List>
</mx:Canvas>
</mx:Application>

--- In flexcoders@yahoogroups.com, "Suzy Lawson" <[EMAIL PROTECTED]>
wrote:
>
> Sho posted a nice example in Flex 2.0. It works pretty much the
same
> way in 1.5.
>
http://weblogs.macromedia.com/sho/archives/2006/04/new_version_of.cfm
>
> <mx:TextInput id="myBox" keyDown="callWebService();/>
>
> --- In flexcoders@yahoogroups.com, "sinacapho" <capmatch@> wrote:
> >
> > Dear all,
> >          is there any help about the autocompletion textfield in
Flex
> > 1.5, basically i want to use web service to refresh ,can somebody
have
> > any resource about that?
> > thx
> > capho
> >
>






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com




YAHOO! GROUPS LINKS




Reply via email to