Kevin
Kevin

Reputation: 85

focusing and following an object in a swing JPanel

i want to focus and keep following a moving object(an image or drawn shape) which is inside a JPanel.tried using JScrollPanes but could not get the scroll pane to follow the object when it goes out of the view-able frame.

thanx.

Upvotes: 2

Views: 193

Answers (1)

camickr
camickr

Reputation: 324118

panel.scrollRectToVisible(...);

Upvotes: 3

Related Questions