Necesito abrir el menú desplegable del cuadro de selección sin hacer clic en él, por ejemplo, con la tecla presionada. Por alguna razón click() funciona bien con otros elementos como la entrada de archivos, pero no puede abrir la lista desplegable. Aquí hay un ejemplo:
https://openprocessing.org/sketch/1587950
function setup() { createCanvas(600, 250); background(200); // create canvas sel = createSelect(); sel.position(100,100); sel.id('mySel'); // create select box inp = createFileInput(open); inp.position(300,100); inp.id('myInput'); // create file input for(let i=0; i<5; i++) { sel.option(random()); } // create select box options } function keyPressed() { // open dropdown with left key - doesn't work if (keyCode === LEFT_ARROW) { document.getElementById('mySel').click(); } // open file dialog with right key - works fine else if (keyCode === RIGHT_ARROW) { document.getElementById('myInput').click(); } } function draw() {} // empty function open(file) {} // empty ¿Hay alguna manera de abrir este menú desplegable, tal vez sin click() ?