KeyPressed

Hola bede,tengo una interrogante,tengo la siguiente linea
if keyPressed(123) then
como hago para agregar en vez de una tecla,dos teclas en la misma linea,por ejemplo,que al tocar el boton izquierdo y shift al mismo tiempo.
un abrazo
morphy

1 Respuesta

Respuesta
1
Asi:
On keyup
if (the commandDown) and (the keycode = 124) then put "fgfg"
if (the shiftDown) and (the keycode = 124) then put "fgfg"
if (the optionDown) and (the keycode = 124) then put "fgfg"
end

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas