Hello,
Try this and it should lead to a solution for you:
function mousePressed()
{
if (bubble1.inside(mouseX, mouseY))
{
bubble1.clicked()
print("b1");
}
if (bubble2.inside(mouseX, mouseY))
{
bubble2.clicked()
print("b2");
}
}
:)