TextArea component- remove focus

Hi ,

Just when I leave the scrollbar of the TextArea component from HTML page, the whole text in the Textarea component goes ‘selected’. How can I remove the auto selection while scrolling ?

very simple issue, but troublesome. Please help

//-Below is the script applied------------

[COLOR=“DimGray”]//ta= textarea
ta.html = true;
ta.wordWrap = true;
ta.multiline = true;
ta.label.condenseWhite=true;

//load css
XStyle = new TextField.StyleSheet();
XStyle.load(“style.css”);
ta.styleSheet = XStyle;

//load in XML
homeContent = new XML();
homeContent.ignoreWhite = true;
homeContent.load(“home.xml”);
homeContent.onLoad = function(success)
{
if(success)
{
ta.text = homeContent;
}
}
[/COLOR]

Thanks
Nasih