Jump to content

colinb

Member
  • Posts

    3
  • Joined

  • Last visited

colinb's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Thanks! Is it possible to do that for an Audio region? I can see how it works for a Midi region, but I don't see where it goes in an audio region.
  2. Has anyone had any luck recording automation for a live loops audio cell? The exact situation is that I am trying to record a guitar loop that uses a software volume pedal—the pedal steel bend and swell sound. I have a midi expression pedal mapped to an automation parameter in a BiasFX2 plugin. The automation records as expected when I am playing or recording to a track, but not when recording to a live loops cell, even when the automation is set to region rather than track. This is for a live performance setting, so I need to be able to record the audio and the automation (midi) into the cell at the same time without additional futzing with the computer. Seems pretty straightforward, but my googling has not been productive. I'd be grateful if anyone could point me in the right direction.
  3. Posting here in case someone else finds the page via a search. I was able to accomplish a simple polyphonic MIDI latch using the Scripter plugin. The script turns off, then turns on, the sustain pedal CC whenever a note is played: function HandleMIDI (event) { event.send(); //Pass MIDI events through the plug-in. if (event instanceof NoteOn) { //first, turn the sustain pedal off var cc1 = new ControlChange; //make a new control change message cc1.number = 64; //set it to controller 64 (sustain) cc1.value = 0; //set the value cc1.send(); //send the event cc1.trace(); //print the event to the console //then turn the sustain pedal back on var cc2 = new ControlChange; //make a new control change message cc2.number = 64; //set it to controller 64(sustain) cc2.value = 127; //set the value cc2.send(); //send the event cc2.trace(); //print the event to the console }} add perk is that you can stop it by hitting the sustain pedal.
×
×
  • Create New...