I\'m using JScrollPane to allow scrolling in a JFrame that has a text component that\'s serving as a text editor. What I want to do, after setting the text in this editor,
You can try this:
scrollPane.getViewport().setViewPosition(new Point(0,0));
According to the JavaDocs setViewPosition() behaves like this:
Sets the view coordinates that appear in the upper left hand corner of the viewport, does nothing if there's no view.