class CL_status{ boolean active = true; float xpos = 10; float ypos = height-10; void draw(){ if (active == true){ textFont(sfont); fill(108,0,0); noStroke(); text(Curstatus ,xpos, ypos); } } }