thnaks many Sophie_cordier, your method works but i discovered that clicking the scroll area and the buttons on scrolls give also another event.target so its not good to disable them all
box86rowh, tried all this allready but no avail, my problem was clicking on any spot on textarea change the Selection index even though the ediable and selectable are disabled.
but good news i found in easy way to solve all this textarea behaiver when click.
ActionScript Code:
package embed
{
import mx.controls.Text;
import mx.controls.TextArea;
public class EText extends TextArea
{
public function EText()
{
super();
}
override public function setFocus():void{
}
}
}
it was setFocus method that causing this, i tried to digg on what this method do but its for TextField which i can't see the source afaik.
anyway thanks all for helping

.