We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Could I make my wallpaper an active processing application?
if so how ?
Don't use this to play pranks on people. That would just be mean.
void setup(){ frame.removeNotify(); frame.setUndecorated(true); size(displayWidth, displayHeight); textSize(64); textAlign(CENTER,CENTER); } void draw(){ frame.setLocation(0,0); background(0); fill(0,255,0); text("CLICK TO EXIT", width/2, height/2); } void mousePressed(){ exit(); }
Doesn't seem to work with 3D sketches for me either... :-(
Answers
Don't use this to play pranks on people. That would just be mean.
Doesn't seem to work with 3D sketches for me either... :-(