We are about to switch to a new forum software. Until then we have removed the registration on this forum.
I'd like to use one of my processing sketches as wallpaper-engine background. In order to be able to use a program as wallpaper however it has to be a fullscreen-window. No - It's not possible to set the window-size to the screen size.
Thanks in advance.
Answers
use fullscreen(); instead of size
Another way is
size(displayWidth, displayHeight);
but I believe this is what fullScreen() does.Kf