Jump to content

Script for KORG Volca FM Velocity


arnte

Recommended Posts

Finally i've got a solution.

Maybe there are some other Logic User out there they own a KORG Volca FM and want to play it with velocity.

Here is a Script that will help:

 

function HandleMIDI(e) {
    if (e instanceof NoteOn) {
        var cc = new ControlChange(); 
        cc.number = 41;
        cc.value = e.velocity;
        cc.send(); 
        cc.trace();
       e.send();
       e.trace();
    } else {
        e.send();
        e.trace();
    }
}

Link to comment
Share on other sites

  • 2 years later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...