I need to make selection of text using mouse instead of ctrl+A I tried:
sendAcceleratorKey(MouseEvent.BUTTON1, "");
but I don't know which argument could I set to say make a click with mouse and let the mouse enforced to select the text.
|
I need to make selection of text using mouse instead of ctrl+A I tried:
but I don't know which argument could I set to say make a click with mouse and let the mouse enforced to select the text. |
||||
|
If the text is in a Addendum: You may also be able to leverage the Your sscce may be helpful in deciding. There's a related example here. |
||||
sendAcceleratorKeymethod is since it is not part of the (JDK6) API. There is no method that I know of that will drag the mouse from the beginning of the text component to the end of the text component. What is the point of this? – camickr Sep 29 '11 at 14:57