xxxxxxxxxx
66
let a, b, c, d, e, f, g, h, i;
function setup() {
createCanvas(windowWidth, windowHeight);
a = new Draggable();
b = new Draggable();
c = new Draggable();
d = new Draggable();
e = new Draggable();
f = new Draggable();
g = new Draggable();
h = new Draggable();
i = new Draggable();
}
function draw() {
background(255);
textAlign(CENTER,CENTER);
noStroke();
a.update();
// a.over();
a.show("Take a newspaper.");
b.update();
b.show("Take a pair of scissors.");
c.update();
c.show("Choose an article as long as you are planning to make your poem.");
d.update();
d.show("Cut out the article.");
e.update();
e.show("Then cut out each of the words that make up this article and put them in a bag.");
f.update();
f.show(" Shake it gently.");
g.update();
g.show("Then take out the scraps one after the other in the order in which they left the bag.");
h.update();
h.show("Copy conscientiously.");
i.update();
i.show("The poem will be like you.");
textAlign(LEFT);
text("And here you are a writer, infinitely original and endowed with a sensibility that is charming though beyond the understanding of the vulgar.",20,height-60, 300, 60);
}
function mousePressed() {
a.pressed();
b.pressed();
c.pressed();
d.pressed();
e.pressed();
f.pressed();
g.pressed();
h.pressed();
i.pressed();
}
function mouseReleased() {
a.released();
b.released();
c.released();
d.released();
e.released();
f.released();
g.released();
h.released();
i.released();
}