Jump to content

arnte

Member
  • Posts

    5
  • Joined

  • Last visited

arnte's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi Ski, thank you very much for your help! I just got a solution some weeks ago and posted it in a seperate thread (viewtopic.php?f=45&t=127024), just to be safe, that anyone else who is using a Volca FM and Logic can find it. But it's very good, that you posted your solution here too. And your script is also better, because you ignore velocity=0. That helps prevent misinterpreting for "note off". Thank you again!
  2. 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(); } }
  3. Okay, it works so far. Thanks again! BUT, the CC is send AFTER the NoteOn. So my VolcaFM synth just reacts on my Vel Key everytime one note to late What i need now, is a script, that not only changes the CC (from maybe 12 to 41) but also block the NoteOn message till the changed CC was send. Can someone help me again?
  4. Howdy, I want to change key velocity value to CC41. I need this, to play my KORG Volca FM with Velocity. It has a velocity parameter but it's not controlable via key velocity but with CC41. Don't ask me why... Normally this change from key vel to CC would be very easy doable with the modifier plug in. But the modifier plug in don't offer the CC numbers from 32 to 63. So i can't use it. But i guess it should be easy to use the MIDI Scripter plugin instead. All i need is a script. Any help would be much aprecciated!
×
×
  • Create New...