Instance Mode 2

This is an attempt to use instance mode and get it to respond to events only when the mouse is over the canvas using the method described in https://p5js.org/reference/#/p5.Element/mousePressed. The yellow canvas is defined in the normal manner. The off white canvas is declared in the instance mode. sketch1.can is not allowed ("sketch1.can is undefined" error.) The line for sketch1.mouseOver is commented out because it causes a "sketch1.mousePressed is not a function" error. Likewise for mouseOut, mousePressed, and mouseReleased. I have tried several alternatives but none worked. Am I doing something wrong or does instance mode have problems with mouse events? (myCanvas2.html does not have trouble with these mouse events.)

const s1 = (sketch1) => {
  let iOver = false;
  let iPressed = false;
  let iCan;
  sketch1.setup = () => {
    sketch1.createCanvas(300, 170);
  //  sketch1.mouseOver( () => {iOver = true;});
  //  sketch1.mouseOut( () => {iOver = false;});
  //  sketch1.mousePressed( () => {iPressed = true; });
  //  sketch1.mouseReleased( () => {iPressed = false; });
  }
  sketch1.draw = () => {
    sketch1.background("FloralWhite");
    sketch1.fill("black");
    sketch1.text("iOver: " + iOver, 10, 30);
    sketch1.text("iPressed: " + iPressed, 10, 10);
  };
    
};

let myp5_1 = new p5(s1);

let can;
let over = false;
let pressed = false;
function setup() {
  can = createCanvas(100, 100);
  can.mouseOver( () => {over = true});
  can.mouseOut( () => {over = false; });
  can.mousePressed( () => {pressed = true; });
  can.mouseReleased( () => {pressed = false; });
}
function draw() {
  can.background("yellow");
  fill("black");
  text("over: " + over, 10, 30);
  text("pressed: " + pressed, 10, 10);
}

James Brink, 5/18/2020