Determining window size

Sure, thats no problem.

[code]from java.awt import GraphicsEnvironment

env = GraphicsEnvironment.getLocalGraphicsEnvironment()
screen = env.getDefaultScreenDevice()
size = screen.getDefaultConfiguration().bounds
print “The main screen is %dx%d” % (size.width, size.height)[/code]

You can get the screen size of any other monitors too by looping through the results of [tt]env.getScreenDevices()[/tt]