Reply
Thu 18 Dec, 2014 01:01 pm
Ok so I want this program to add a color to a button or object before redirecting to a menu or title screen
var button = function() {
ellipse(200,200,200,200);
};
button();
var filler = function() {
mouseClicked = function() {
fill(20,202,20);
};
};
filler();
button();
plz help me out