How can I, in an Applet, get the Window containing the Applet as an Window
Object?
My goal is to make a screenshot of the content of a "Website".
I tried to make this with the Robot
object:
Window window = ???
BufferedImage bufferedImage = new Robot().createScreenCapture(window.getBorder());
To get the border of the browser is the reason why I need this as a window object.
Or is they another possibility to do this?