Vst Lua

Email: johnhw@gmailWASP.com minus the insect

The main GUI


A custom GUI in action (simple drum machine).


FAQ:

function midiEventCb(midiEvent)
if midiEvent.type==midi.noteOn or midiEvent.type==midi.noteOff then
local note = midiEvent.byte2 -- decide whether to transpose it up or down if note>=noteToNumber('C-5') then
note = midiEvent.byte2 + interval.fifth
else note = note - interval.fifth end midiEvent.byte2=note
end sendMidi(midiEvent)
end
See the API for details.

DOWNLOAD IT