Hi All,Users getting frustrated with the single line search, after selecting something from the dropdown, it populates the search box with the entire string selected.Often need to select some of it, delete, select more, delete, and so (even double/triple click doesn't work) on just to clear the box to enter a "new" search term.Anyway, This is what I did to the SearchInputSkin.mxml to make it clear the text each time the user clicks in the search box.In case someone else wants this: <s:RichEditableText id="textDisplay"
verticalAlign="middle"
widthInChars="10"
click="textDisplay.text=''" />
R_