We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hey!
I cant seem to get this .setLocation() to work. .setTitle() works just fine btw. I tried surface.setLocation() as well as frame.setLocation(). Either doesn't work. Could it be that its a specific issue with Eclipse somehow? Here's some code:
public static boolean firstTimeDraw = true;
//...
public void draw() {
if (firstTimeDraw) {
frame.setLocation(990, 512);
firstTimeDraw = false;
}
}
//...
regards, TPRammus
Answers
https://forum.Processing.org/two/discussions/tagged?Tag=setlocation()