¿Es posible deshabilitar el trackpad y el mouse temporalmente mientras tienes un mouse y un teclado externos conectados?
Las teclas siguen siendo golpeadas accidentalmente mientras tengo el mouse y el teclado enchufados.
Editar
Gracias a todos los que respondieron, debido a esto, pude hacer una manzana para activar y desactivar el teclado integrado:
try
if (display dialog "Press OK to Enable Keyboard and cancel to disable.") = {button returned:"OK"} then
do shell script "sudo kextload /System/Library/Extensions/AppleUSBTopCase.kext/Contents/PlugIns/AppleUSBTCKeyboard.kext/" with administrator privileges
end if
on error msg
do shell script "sudo kextunload /System/Library/Extensions/AppleUSBTopCase.kext/Contents/PlugIns/AppleUSBTCKeyboard.kext/" with administrator privileges
end try