Os planteo un problema que tengo a ver si me podéis ayudar
He comprado una controladora midi KORG nanokontrol2 y me gustaría poder controlar el sonido del mac con uno de los faders. De momento lo máximo que he conseguido es asignar acciones con MidiPipe a dos botones para subir y bajar con el siguiente script de Jordi Torres
Alguien escribió:on runme(message)
if (item 1 of message = 144) and (item 2 of message = 71) and (item 3 of message > 0) then set currentVolume to output volume of (get volume settings)
set volume output volume (currentVolume - 5)
end runme
Por otro lado, he asignado otro botón para hacer mute y funciona, pero no consigo quitar el mute apretando de nuevo el botón. Este es el código que he intentado.
Alguien escribió:on runme(message)
if (item 1 of message = 144) and (item 2 of message = 55) and (item 3 of message > 0) then set volume with output muted
if (item 1 of message = 144) and (item 2 of message = 55) and (item 3 of message =0) then set volume without output muted
end runme
En fin, igual hay una manera más sencilla de conseguirlo y me estoy metiendo en un jardín. Espero que me podáis ayudar.