I'm a 1010 newbie and I would like the 1st pedal to incrementally move down the channel rack and the second pedal to move up the channel rack. Some say an mmc message is required; others say you must write script; others say it can't be done, others say consult your manual.no one shows, or even tells you how, or what these things mean. Just long lectures which tell you NOTHING on YouTube. "I'm sooo SMART." On line," ...SURE I can tell you how! ...just as soon as I get your CREDIT CARD NUMBER..." I hope someone HERE will be to the purpose, and answer my question directly.
You can do it with a script.
For instance:
1. In the FCB1010's Global Configuration, set the MIDI channel for CNT 1 to 1.
2. Set up two FCB1010 pedals as follows:
Pedal 0:1: CNT 1: Controller=1; Value 1=0
Pedal 0:2: CNT 1: Controller=1; Value 1=1
3. In "Documents\Image-Line\FL-Studio\Settings\Hardware", create a folder called "FCB1010".
4. Save the code below as a file called "device_FCB1010.py" in this "FCB1010" folder:
# name=FCB1010
import ui
channel = 1
statusbyte = 0xb0+channel-1
controller = 1
val_next = 0
val_previous = 1
def OnMidiMsg(event):
if event.status == statusbyte and event.data1 == controller:
if event.data2 == val_next:
ui.next()
event.handled = True
elif event.data2 == val_previous:
ui.previous()
event.handled = True
else:
event.handled = False
else:
event.handled = False
5. In FL Studio, go to Options -> System -> MIDI: in the "Input" listbox, select the MIDI input to which the MIDI output of your FCB1010 is connected, then for "Controller type" select "FCB1010".
You can now move up and down in FL Studio's Channel rack by pressing pedals 0:1 and 0:2 of the FCB1010.