Jump to content

intergalatico

Member
  • Posts

    7
  • Joined

  • Last visited

intergalatico's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Holly s#!+!!! Thank you, thank you and thank you! I will play around a bit and try to figure out!
  2. I'm sorry... I don't know what do you mean with "environment". Can you please show me?
  3. Ok, but please help me to get the transformer... I can apply the transformer only when a midi region is available on the session.
  4. I got it! Use with moderation! //************************************************ // Alesis DM8 Velocity Note Switching (Ride Cymbal) //************************************************ function HandleMIDI(event) { event.send(); // If Ride Tip is played harder then velocity 90 if(event instanceof NoteOn && event.pitch == 51 && event.velocity >= 90) { var note = new NoteOn; //create a NoteOn object note.pitch = 25; //Ride Shaft note.send(); //send note on } // If Ride Tip is played harder then velocity 110 if(event instanceof NoteOn && event.pitch == 51 && event.velocity >= 115) { var note = new NoteOn; //create a NoteOn object note.pitch = 79; //crash 2 note.send(); //send note on } event.trace(); event.send(); } Cheers!
  5. Hey Atlas007, thanks for the answer but the Transformer is for Midi that is already recorded. I want to use it live while I am playing.
  6. Hello there, I would like to use my e-drum (Alesis DM8) Ride cymbal (2 zones) to have two sounds in the same area. Like: When I strike the Ride Tip with a velocity greater than 90 the midi note would change and I would get a Bow sound. Something like: If C3 Velocity >= 90 then Midi Note = C#3 with the same velocity. I would be really grateful if someone could help me with it! Thank you! Cheers!
×
×
  • Create New...