├── ADVANCE ├── Advance.py └── __init__.py ├── AIRA_MX_1 ├── Colors.py ├── ControlElementUtils.py ├── NotifyingMixerComponent.py ├── NotifyingSessionComponent.py ├── README.md ├── RolandMX1.py ├── SkinDefault.py └── __init__.py ├── APC20 ├── APC20.py ├── BackgroundComponent.py ├── ShiftableSelectorComponent.py ├── ShiftableZoomingComponent.py ├── SliderModesComponent.py ├── __init__.py └── consts.py ├── APC40 ├── APC40.py ├── SessionComponent.py ├── TransportComponent.py └── __init__.py ├── APC40_MkII ├── APC40_MkII.py ├── BankToggleComponent.py ├── MixerComponent.py ├── QuantizationComponent.py ├── TransportComponent.py └── __init__.py ├── APC_Key_25 ├── APC_Key_25.py ├── MixerComponent.py ├── SendToggleComponent.py └── __init__.py ├── APC_mini ├── APC_mini.py └── __init__.py ├── Alesis_V ├── Alesis_V.py └── __init__.py ├── Alesis_VI ├── Alesis_VI.py └── __init__.py ├── Alesis_VX ├── Alesis_VX.py └── __init__.py ├── Axiom ├── __init__.py ├── config.py └── consts.py ├── AxiomPro ├── AxiomPro.py ├── DisplayingMixerComponent.py ├── EncoderMixerModeSelector.py ├── MixerOrDeviceModeSelector.py ├── NotifyingMixerComponent.py ├── PageableDeviceComponent.py ├── PeekableEncoderElement.py ├── SelectButtonModeSelector.py ├── TransportViewModeSelector.py └── __init__.py ├── Axiom_25_Classic ├── Axiom.py ├── Preset.syx └── __init__.py ├── Axiom_49_61_Classic ├── Axiom.py ├── Preset.syx ├── SliderSection.py └── __init__.py ├── Axiom_AIR_25_49_61 ├── Axiom_AIR_25_49_61.py ├── BestBankDeviceComponent.py ├── ConfigurableButtonElement.py ├── DeviceNavComponent.py ├── DisplayingChanStripComponent.py ├── EncoderModeSelector.py ├── FaderButtonModeSelector.py ├── FaderModeSelector.py ├── IdentifyingEncoderElement.py ├── MainModeSelector.py ├── NumericalDisplayElement.py ├── NumericalDisplaySegment.py ├── SingleFaderButtonModeSelector.py ├── SpecialMixerComponent.py ├── SpecialSessionComponent.py ├── TransportViewModeSelector.py ├── __init__.py └── consts.py ├── Axiom_AIR_Mini32 ├── AxiomAirMini32.py ├── DeviceNavComponent.py ├── EncoderMixerModeSelector.py ├── MixerOrDeviceModeSelector.py └── __init__.py ├── Axiom_DirectLink ├── Axiom_DirectLink.py ├── BestBankDeviceComponent.py ├── DetailViewCntrlComponent.py ├── PeekableEncoderElement.py ├── ShiftableMixerComponent.py ├── ShiftableSessionComponent.py ├── ShiftableTransportComponent.py ├── TransportViewModeSelector.py └── __init__.py ├── BCF2000 ├── Preset.syx ├── __init__.py ├── config.py └── consts.py ├── BCR2000 ├── Preset.syx ├── __init__.py ├── config.py └── consts.py ├── BeatStep ├── BeatStep.py └── __init__.py ├── FireOne ├── FireOne.py └── __init__.py ├── KONTROL49 ├── Preset.syx ├── __init__.py ├── config.py └── consts.py ├── KeyFadr ├── KeyFadr.py └── __init__.py ├── KeyLab ├── DeviceNavigationComponent.py ├── DisplayElement.py ├── KeyLab.py ├── MixerComponent.py ├── SessionComponent.py └── __init__.py ├── KeyLab_88 ├── KeyLab88.py └── __init__.py ├── KeyPad ├── CombinedButtonsElement.py ├── CuePointControlComponent.py ├── KeyPad.py └── __init__.py ├── Keystation_Pro_88 ├── __init__.py ├── config.py └── consts.py ├── LPD8 ├── __init__.py ├── config.py └── consts.py ├── LV1_LX1 ├── LV1_LX1.py └── __init__.py ├── LV2_LX2_LC2_LD2 ├── Devices.py ├── DevicesXY.py ├── FaderfoxComponent.py ├── FaderfoxDeviceController.py ├── FaderfoxHelper.py ├── FaderfoxMixerController.py ├── FaderfoxScript.py ├── FaderfoxTransportController.py ├── LV2DeviceController.py ├── LV2MixerController.py ├── LV2TransportController.py ├── LV2_LX2_LC2_LD2.py ├── ParamMap.py ├── Params.py ├── __init__.py └── consts.py ├── Launch_Control ├── ButtonSysexControl.py ├── Colors.py ├── ConfigurableButtonElement.py ├── DeviceNavigationComponent.py ├── LaunchControl.py ├── SpecialMixerComponent.py ├── SpecialSessionComponent.py ├── Sysex.py └── __init__.py ├── Launch_Control_XL ├── ButtonElement.py ├── DeviceComponent.py ├── LaunchControlXL.py ├── MixerComponent.py ├── SkinDefault.py └── __init__.py ├── Launchkey ├── Launchkey.py ├── SessionNavigationComponent.py ├── SpecialMixerComponent.py ├── TransportViewModeSelector.py ├── __init__.py └── consts.py ├── Launchkey_MK2 ├── BackgroundComponent.py ├── Colors.py ├── ControlElementUtils.py ├── DeviceComponent.py ├── InControlStatusComponent.py ├── Launchkey_MK2.py ├── MixerComponent.py ├── ModeUtils.py ├── SessionComponent.py ├── Skin.py ├── __init__.py └── consts.py ├── Launchkey_Mini ├── LaunchkeyMini.py └── __init__.py ├── Launchpad ├── ConfigurableButtonElement.py ├── DefChannelStripComponent.py ├── Launchpad.py ├── MainSelectorComponent.py ├── PreciseButtonSliderElement.py ├── SpecialMixerComponent.py ├── SpecialSessionComponent.py ├── SubSelectorComponent.py └── __init__.py ├── Launchpad_MK2 ├── BackgroundComponent.py ├── ChannelStripComponent.py ├── Colors.py ├── ComponentUtils.py ├── ControlElementUtils.py ├── Launchpad_MK2.py ├── MixerComponent.py ├── ModeUtils.py ├── SessionComponent.py ├── SessionZoomingComponent.py ├── Skin.py ├── SliderElement.py ├── __init__.py └── consts.py ├── Launchpad_Pro ├── ActionsComponent.py ├── BackgroundComponent.py ├── ClipActionsComponent.py ├── Colors.py ├── ConfigurableButtonElement.py ├── DeviceNavigationComponent.py ├── DrumGroupComponent.py ├── DrumGroupFinderComponent.py ├── Launchpad_Pro.py ├── MultiButtonElement.py ├── SkinDefault.py ├── SlideComponent.py ├── SliderElement.py ├── SpecialDeviceComponent.py ├── SpecialMidiMap.py ├── SpecialMixerComponent.py ├── SpecialModesComponent.py ├── SpecialSessionComponent.py ├── SpecialSessionRecordingComponent.py ├── TargetTrackComponent.py ├── TranslationComponent.py ├── __init__.py └── consts.py ├── LiveControl_2_0 ├── LC2ChannelDeviceComponent.py ├── LC2ChannelStripComponent.py ├── LC2ClipSlotComponent.py ├── LC2MixerComponent.py ├── LC2Modulator.py ├── LC2ParameterElement.py ├── LC2SceneComponent.py ├── LC2Sequencer.py ├── LC2SessionComponent.py ├── LC2SessionSnapshot.py ├── LC2Sysex.py ├── LC2TransportComponent.py ├── LiveControl2.py ├── UserDict.py ├── __future__.py ├── __init__.py ├── copy_reg.py ├── linecache.py ├── ntpath.py ├── os.py ├── posixpath.py ├── random.py ├── stat.py ├── types.py └── warnings.py ├── LiveControl_2_1_3 ├── LC2ChannelDeviceComponent.py ├── LC2ChannelStripComponent.py ├── LC2ClipSlotComponent.py ├── LC2MixerComponent.py ├── LC2Modulator.py ├── LC2ParameterElement.py ├── LC2SceneComponent.py ├── LC2Sequencer.py ├── LC2SessionComponent.py ├── LC2SessionSnapshot.py ├── LC2Sysex.py ├── LC2TransportComponent.py ├── LiveControl2.py ├── UserDict.py ├── __future__.py ├── __init__.py ├── copy_reg.py ├── linecache.py ├── ntpath.py ├── os.py ├── posixpath.py ├── random.py ├── stat.py ├── types.py └── warnings.py ├── LiveControl_2_1_31 ├── LC2ChannelDeviceComponent.py ├── LC2ChannelStripComponent.py ├── LC2ClipSlotComponent.py ├── LC2MixerComponent.py ├── LC2Modulator.py ├── LC2ParameterElement.py ├── LC2SceneComponent.py ├── LC2Sequencer.py ├── LC2SessionComponent.py ├── LC2SessionSnapshot.py ├── LC2Sysex.py ├── LC2TransportComponent.py ├── LiveControl2.py ├── UserDict.py ├── __future__.py ├── __init__.py ├── copy_reg.py ├── linecache.py ├── ntpath.py ├── os.py ├── posixpath.py ├── random.py ├── stat.py ├── types.py └── warnings.py ├── LiveControl_2_1_32 ├── LC2ChannelDeviceComponent.py ├── LC2ChannelStripComponent.py ├── LC2ClipSlotComponent.py ├── LC2MixerComponent.py ├── LC2Modulator.py ├── LC2ParameterElement.py ├── LC2SceneComponent.py ├── LC2Sequencer.py ├── LC2SessionComponent.py ├── LC2SessionSnapshot.py ├── LC2Sysex.py ├── LC2TransportComponent.py ├── LiveControl2.py ├── UserDict.py ├── __future__.py ├── __init__.py ├── copy_reg.py ├── linecache.py ├── ntpath.py ├── os.py ├── posixpath.py ├── random.py ├── stat.py ├── types.py └── warnings.py ├── MIDI_Mix ├── ControlElementUtils.py ├── MIDI_Mix.py ├── MixerComponent.py └── __init__.py ├── MPD18 ├── __init__.py ├── config.py └── consts.py ├── MPD218 ├── MPD218.py └── __init__.py ├── MPD226 ├── MPD226.py └── __init__.py ├── MPD232 ├── MPD232.py └── __init__.py ├── MPD24 ├── __init__.py ├── config.py └── consts.py ├── MPD32 ├── Preset.syx ├── __init__.py ├── config.py └── consts.py ├── MPK225 ├── MPK225.py └── __init__.py ├── MPK249 ├── MPK249.py └── __init__.py ├── MPK25 ├── Preset.syx ├── __init__.py ├── config.py └── consts.py ├── MPK261 ├── MPK261.py └── __init__.py ├── MPK49 ├── Preset.syx ├── __init__.py ├── config.py └── consts.py ├── MPK61 ├── Preset.syx ├── __init__.py ├── config.py └── consts.py ├── MPK88 ├── Preset.syx ├── __init__.py ├── config.py └── consts.py ├── MPK_mini ├── __init__.py ├── config.py └── consts.py ├── MackieControl ├── ChannelStrip.py ├── ChannelStripController.py ├── MackieControl.py ├── MackieControlComponent.py ├── MainDisplay.py ├── MainDisplayController.py ├── SoftwareController.py ├── TimeDisplay.py ├── Transport.py ├── __init__.py └── consts.py ├── MackieControlXT ├── MackieControlXT.py └── __init__.py ├── MackieControl_Classic ├── ChannelStrip.py ├── ChannelStripController.py ├── MackieControl.py ├── MackieControlComponent.py ├── MainDisplay.py ├── MainDisplayController.py ├── SoftwareController.py ├── TimeDisplay.py ├── Transport.py ├── __init__.py └── consts.py ├── Maschine ├── AudioClipEditComponent.py ├── ControlMode.py ├── DrumMode.py ├── EditSection.py ├── GatedColorButton.py ├── KnobSection.py ├── MIDI_Map.py ├── Maschine.py ├── MaschineChannelStripComponent.py ├── MaschineColorSelectMode.py ├── MaschineDeviceComponent.py ├── MaschineMixerComponent.py ├── MaschineMk1.py ├── MaschineMode.py ├── MaschineSessionComponent.py ├── MaschineTransport.py ├── MidiEditSection.py ├── ModClipSlotComponent.py ├── ModSceneComponent.py ├── ModeSelector.py ├── MonoGatedButton.py ├── MonoNavSection.py ├── NoteRepeatComponent.py ├── PadButton.py ├── PadMode.py ├── PadScale.py ├── SceneMode.py ├── StateButton.py ├── TrackModMode.py └── __init__.py ├── MasterControl ├── MasterControl.py └── __init__.py ├── MidAir25 ├── __init__.py ├── config.py └── consts.py ├── MiniLab ├── MiniLab.py └── __init__.py ├── Nocturn2 ├── DeviceController.py ├── MixerController.py ├── Nocturn.py ├── NocturnComponent.py ├── PlayingController.py ├── SceneController.py ├── __init__.py ├── apihelper.py └── consts.py ├── Novation_Impulse ├── EncoderModeSelector.py ├── Novation_Impulse.py ├── PeekableEncoderElement.py ├── ShiftableTransportComponent.py ├── SpecialMixerComponent.py ├── TransportViewModeSelector.py └── __init__.py ├── Novation_Impulse2 ├── EncoderModeSelector.py ├── Novation_Impulse2.py ├── PeekableEncoderElement.py ├── ShiftableTransportComponent.py ├── SpecialMixerComponent.py ├── TransportViewModeSelector.py ├── __init__.py └── readme.txt ├── O2 ├── __init__.py ├── config.py └── consts.py ├── OpenLabs ├── OpenLabs.py ├── SpecialDeviceComponent.py ├── SpecialTransportComponent.py └── __init__.py ├── Oxygen49_61 ├── __init__.py ├── config.py └── consts.py ├── Oxygen8 ├── __init__.py ├── config.py └── consts.py ├── Oxygen8v2 ├── __init__.py ├── config.py └── consts.py ├── Oxygen_3rd_Gen ├── Oxygen_3rd_Gen.py ├── SpecialMixerComponent.py ├── TransportViewModeSelector.py └── __init__.py ├── Oxygen_4th_Gen └── __init__.py ├── Ozone ├── __init__.py ├── config.py └── consts.py ├── Ozonic ├── __init__.py ├── config.py └── consts.py ├── Photon_25 ├── __init__.py ├── config.py └── consts.py ├── Photon_X25 ├── __init__.py ├── config.py └── consts.py ├── ProjectMixIO ├── ProjectMixIO.py └── __init__.py ├── Push ├── AccentComponent.py ├── ActionWithOptionsComponent.py ├── Actions.py ├── AutoArmComponent.py ├── AutomationComponent.py ├── BrowserComponent.py ├── BrowserModes.py ├── ClipControlComponent.py ├── Colors.py ├── ConfigurableButtonElement.py ├── ControlElementFactory.py ├── DeviceNavigationComponent.py ├── DeviceParameterComponent.py ├── DrumGroupComponent.py ├── FirmwareHandling.py ├── GlobalPadParameters.py ├── GridResolution.py ├── HandshakeComponent.py ├── InstrumentComponent.py ├── LoopSelectorComponent.py ├── MatrixMaps.py ├── MelodicComponent.py ├── MelodicPattern.py ├── MessageBoxComponent.py ├── NavigationNode.py ├── NoteEditorComponent.py ├── NoteEditorPaginator.py ├── NoteRepeatComponent.py ├── NoteSettingsComponent.py ├── PadControl.py ├── PadSensitivity.py ├── PlayheadComponent.py ├── PlayheadElement.py ├── Preset.syx ├── ProviderDeviceComponent.py ├── Push.py ├── QuantizationComponent.py ├── ScrollableList.py ├── ScrollableListComponent.py ├── SelectPlayingClipComponent.py ├── SelectedTrackParameterProvider.py ├── Selection.py ├── SessionRecordingComponent.py ├── Setting.py ├── Settings.py ├── Setup.syx ├── SkinDefault.py ├── SlideComponent.py ├── SlideableTouchStripComponent.py ├── SpecialChanStripComponent.py ├── SpecialMixerComponent.py ├── SpecialPhysicalDisplay.py ├── SpecialSessionComponent.py ├── StepSeqComponent.py ├── Sysex.py ├── TouchEncoderElement.py ├── TouchStripController.py ├── TouchStripElement.py ├── TrackFrozenMode.py ├── TransportComponent.py ├── UserSettingsComponent.py ├── ValueComponent.py ├── ViewControlComponent.py ├── WithPriority.py ├── __init__.py ├── browser_component.py ├── browser_model.py ├── browser_model_factory.py ├── browser_query.py ├── consts.py ├── custom_bank_definitions.py ├── device_navigation_component.py ├── drum_group_component.py ├── elements.py ├── firmware_handling.py ├── global_pad_parameters.py ├── handshake_component.py ├── mode_behaviours.py ├── multi_entry_mode.py ├── navigation_node.py ├── notification_component.py ├── pad_sensitivity.py ├── quantization_settings.py ├── scales_component.py ├── special_physical_display.py ├── user_settings_component.py └── with_priority.py ├── Push2 ├── .DS_Store_failed ├── __init__.py ├── actions.py ├── automation.py ├── bank_definitions.py ├── bank_selection_component.py ├── banking_util.py ├── browser_component.py ├── browser_item.py ├── browser_list.py ├── browser_modes.py ├── chain_selection_component.py ├── clip_control.py ├── clip_decoration.py ├── colors.py ├── convert.py ├── custom_bank_definitions.py ├── decoration.py ├── device_component.py ├── device_decoration.py ├── device_enabling.py ├── device_navigation.py ├── device_options.py ├── device_parameter_bank.py ├── device_parameter_bank_with_options.py ├── device_parameter_component.py ├── device_view_component.py ├── drum_group_component.py ├── drum_pad_parameter_component.py ├── elements.py ├── firmware.py ├── firmware │ ├── app_push2_1.0.44.upgrade │ └── app_push2_1.0.47.upgrade ├── hardware_settings_component.py ├── internal_parameter.py ├── item_lister_component.py ├── mapped_control.py ├── master_track.py ├── mixable_utilities.py ├── mixer_component.py ├── mixer_control_component.py ├── mode_collector.py ├── model │ ├── __init__.py │ ├── declaration.py │ ├── generation.py │ ├── repr.py │ └── uniqueid.py ├── mute_solo_stop.py ├── note_editor.py ├── note_settings.py ├── notification_component.py ├── observable_property_alias.py ├── pad_velocity_curve.py ├── parameter_mapping_sensitivities.py ├── parameter_slot_description.py ├── push2.py ├── push2_model.py ├── real_time_channel.py ├── scales_component.py ├── session_component.py ├── session_recording.py ├── session_ring_selection_linking.py ├── settings.py ├── setup_component.py ├── simpler_slice_nudging.py ├── simpler_zoom.py ├── skin_default.py ├── stop_clip_component.py ├── sysex.py ├── track_list.py ├── track_mixer_control_component.py ├── track_selection.py ├── user_component.py └── waveform_navigation.py ├── QuNeo ├── ConfigurableButtonElement.py ├── MIDI_Map.py ├── QuNeo.py ├── SequencerMetronome.py ├── SpecialChannelStripComponent.py ├── SpecialMixerComponent.py ├── SpecialSessionComponent.py ├── SpecialTransportComponent.py ├── VUMeter.py └── __init__.py ├── README.md ├── Radium49_61 ├── __init__.py ├── config.py └── consts.py ├── RemoteSL ├── DisplayController.py ├── EffectController.py ├── MixerController.py ├── RemoteSL.py ├── RemoteSLComponent.py ├── __init__.py └── consts.py ├── RemoteSL_Classic ├── DisplayController.py ├── EffectController.py ├── MixerController.py ├── RemoteSL.py ├── RemoteSLComponent.py ├── __init__.py └── consts.py ├── Roland_A_PRO ├── DeviceNavigationComponent.py ├── MixerComponent.py ├── Preset.syx ├── Roland_A_PRO.py └── __init__.py ├── Tranzport ├── Tranzport.py ├── __init__.py └── consts.py ├── TriggerFinger ├── __init__.py ├── config.py └── consts.py ├── UC33e ├── __init__.py ├── config.py └── consts.py ├── VCM600 ├── MixerComponent.py ├── TrackEQComponent.py ├── TrackFilterComponent.py ├── TransportComponent.py ├── VCM600.py ├── ViewTogglerComponent.py └── __init__.py ├── ZERO8 ├── __init__.py ├── config.py └── consts.py ├── _APC ├── APC.py ├── ControlElementUtils.py ├── DetailViewCntrlComponent.py ├── DeviceBankButtonElement.py ├── DeviceComponent.py ├── MixerComponent.py ├── RingedEncoderElement.py ├── SessionComponent.py ├── SkinDefault.py └── __init__.py ├── _Arturia ├── ArturiaControlSurface.py ├── MixerComponent.py ├── ScrollComponent.py ├── SessionComponent.py └── __init__.py ├── _Axiom ├── Encoders.py ├── Pads.py ├── Transport.py ├── __init__.py └── consts.py ├── _Framework ├── BackgroundComponent.py ├── ButtonElement.py ├── ButtonMatrixElement.py ├── ButtonSliderElement.py ├── Capabilities.py ├── ChannelStripComponent.py ├── ChannelTranslationSelector.py ├── ClipCreator.py ├── ClipSlotComponent.py ├── ComboElement.py ├── CompoundComponent.py ├── CompoundElement.py ├── Control.py ├── ControlElement.py ├── ControlSurface.py ├── ControlSurfaceComponent.py ├── Debug.py ├── Defaults.py ├── Dependency.py ├── DeviceBankRegistry.py ├── DeviceComponent.py ├── Disconnectable.py ├── DisplayDataSource.py ├── DrumGroupComponent.py ├── DrumRackComponent.py ├── EncoderElement.py ├── IdentifiableControlSurface.py ├── InputControlElement.py ├── Layer.py ├── LogicalDisplaySegment.py ├── M4LInterfaceComponent.py ├── MidiMap.py ├── MixerComponent.py ├── ModeSelectorComponent.py ├── ModesComponent.py ├── MomentaryModeObserver.py ├── NotifyingControlElement.py ├── OptionalElement.py ├── PhysicalDisplayElement.py ├── Profile.py ├── Proxy.py ├── Resource.py ├── SceneComponent.py ├── ScrollComponent.py ├── SessionComponent.py ├── SessionRecordingComponent.py ├── SessionZoomingComponent.py ├── Signal.py ├── Skin.py ├── SlideComponent.py ├── SliderElement.py ├── SubjectSlot.py ├── SysexValueControl.py ├── Task.py ├── ToggleComponent.py ├── TrackArmState.py ├── TransportComponent.py ├── Util.py ├── ViewControlComponent.py └── __init__.py ├── _Generic ├── Devices.py ├── GenericScript.py ├── SelectChanStripComponent.py ├── SpecialMixerComponent.py ├── __init__.py └── util.py ├── _MPDMkIIBase ├── ControlElementUtils.py ├── MPDMkIIBase.py └── __init__.py ├── _MxDCore ├── LomTypes.py ├── LomUtils.py ├── MxDCore.py ├── MxDUtils.py └── __init__.py ├── _Serato ├── PySCAClipControl.py ├── Serato.py ├── SpecialChanStripComponent.py ├── SpecialClipSlotComponent.py ├── SpecialDeviceComponent.py ├── SpecialMixerComponent.py ├── SpecialSceneComponent.py ├── SpecialSessionComponent.py └── __init__.py ├── _Tools ├── ConfigParser.py ├── InstantMappings-HowTo.txt ├── UserConfiguration.txt ├── __init__.py ├── copy_reg.py ├── multipledispatch │ ├── __init__.pyc │ ├── conflict.pyc │ ├── core.pyc │ ├── dispatcher.pyc │ └── utils.pyc ├── re.py ├── simplejson │ ├── __init__.pyc │ ├── compat.pyc │ ├── decoder.pyc │ ├── encoder.pyc │ ├── ordered_dict.pyc │ ├── scanner.pyc │ └── tool.pyc ├── sre_compile.py ├── sre_constants.py ├── sre_parse.py ├── stubout.py └── types.py ├── _UserScript └── __init__.py ├── ableton ├── __init__.py └── v2 │ ├── .DS_Store_failed_failed │ ├── README.md │ ├── __init__.pyc │ ├── base │ ├── .DS_Store_failed_failed │ ├── __init__.py │ ├── collection │ │ ├── __init__.py │ │ ├── indexed_dict.py │ │ └── ordered_dict.py │ ├── dependency.py │ ├── disconnectable.py │ ├── gcutil.py │ ├── live_api_utils.py │ ├── proxy.py │ ├── signal.py │ ├── slot.py │ ├── task.py │ └── util.py │ └── control_surface │ ├── .DS_Store_failed_failed │ ├── __init__.py │ ├── capabilities.py │ ├── clip_creator.py │ ├── component.py │ ├── components │ ├── __init__.py │ ├── background.py │ ├── channel_strip.py │ ├── clip_slot.py │ ├── device.py │ ├── drum_group.py │ ├── m4l_interface.py │ ├── mixer.py │ ├── playable.py │ ├── scene.py │ ├── scroll.py │ ├── session.py │ ├── session_navigation.py │ ├── session_overview.py │ ├── session_recording.py │ ├── session_ring.py │ ├── slide.py │ ├── toggle.py │ ├── transport.py │ └── view_control.py │ ├── compound_component.py │ ├── compound_element.py │ ├── control │ ├── __init__.py │ ├── button.py │ ├── control.py │ ├── control_list.py │ ├── encoder.py │ ├── mapped.py │ ├── radio_button.py │ ├── text_display.py │ └── toggle_button.py │ ├── control_element.py │ ├── control_surface.py │ ├── defaults.py │ ├── device_bank_registry.py │ ├── elements │ ├── __init__.py │ ├── button.py │ ├── button_matrix.py │ ├── button_slider.py │ ├── color.py │ ├── combo.py │ ├── display_data_source.py │ ├── encoder.py │ ├── logical_display_segment.py │ ├── optional.py │ ├── physical_display.py │ ├── slider.py │ └── sysex_element.py │ ├── identifiable_control_surface.py │ ├── input_control_element.py │ ├── layer.py │ ├── midi.py │ ├── midi_map.py │ ├── mode.py │ ├── profile.py │ ├── resource.py │ └── skin.py ├── microKONTROL ├── Preset.syx ├── __init__.py ├── config.py └── consts.py ├── nanoKontrol ├── .gitignore ├── Encoders.py ├── NanoKontrol Presets │ └── NanoKontrol-ableton-remote.nktrl_set ├── NanoKontrol.py ├── Pads.py ├── README.md ├── SliderSection.py ├── Transport.py ├── __init__.py └── consts.py ├── padKONTROL ├── __init__.py ├── config.py └── consts.py └── pushbase ├── __init__.py ├── accent_component.py ├── action_with_options_component.py ├── actions.py ├── auto_arm_component.py ├── automation_component.py ├── banking_util.py ├── browser_modes.py ├── browser_util.py ├── clip_control_component.py ├── colors.py ├── configurable_button_element.py ├── consts.py ├── control_element_factory.py ├── decoration.py ├── device_chain_utils.py ├── device_component.py ├── device_parameter_bank.py ├── device_parameter_component.py ├── drum_group_component.py ├── elements.py ├── fixed_length.py ├── grid_resolution.py ├── instrument_component.py ├── internal_parameter.py ├── loop_selector_component.py ├── mapped_control.py ├── matrix_maps.py ├── melodic_component.py ├── melodic_pattern.py ├── message_box_component.py ├── note_editor_component.py ├── note_editor_paginator.py ├── note_repeat_component.py ├── note_settings_component.py ├── pad_control.py ├── parameter_provider.py ├── parameter_slot_description.py ├── percussion_instrument_finder_component.py ├── playhead_component.py ├── playhead_element.py ├── provider_device_component.py ├── push_base.py ├── quantization_component.py ├── scrollable_list.py ├── scrollable_list_component.py ├── select_playing_clip_component.py ├── selected_track_parameter_provider.py ├── selection.py ├── session_recording_component.py ├── setting.py ├── simpler_decoration.py ├── simpler_slice_nudging.py ├── skin_default.py ├── sliced_simpler_component.py ├── slideable_touch_strip_component.py ├── special_chan_strip_component.py ├── special_mixer_component.py ├── special_session_component.py ├── step_seq_component.py ├── sysex.py ├── touch_encoder_element.py ├── touch_strip_controller.py ├── touch_strip_element.py ├── track_frozen_mode.py ├── transport_component.py ├── user_component.py └── value_component.py /ADVANCE/Advance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/ADVANCE/Advance.py -------------------------------------------------------------------------------- /ADVANCE/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/ADVANCE/__init__.py -------------------------------------------------------------------------------- /AIRA_MX_1/Colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/AIRA_MX_1/Colors.py -------------------------------------------------------------------------------- /AIRA_MX_1/ControlElementUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/AIRA_MX_1/ControlElementUtils.py -------------------------------------------------------------------------------- /AIRA_MX_1/NotifyingMixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/AIRA_MX_1/NotifyingMixerComponent.py -------------------------------------------------------------------------------- /AIRA_MX_1/NotifyingSessionComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/AIRA_MX_1/NotifyingSessionComponent.py -------------------------------------------------------------------------------- /AIRA_MX_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/AIRA_MX_1/README.md -------------------------------------------------------------------------------- /AIRA_MX_1/RolandMX1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/AIRA_MX_1/RolandMX1.py -------------------------------------------------------------------------------- /AIRA_MX_1/SkinDefault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/AIRA_MX_1/SkinDefault.py -------------------------------------------------------------------------------- /AIRA_MX_1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/AIRA_MX_1/__init__.py -------------------------------------------------------------------------------- /APC20/APC20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/APC20/APC20.py -------------------------------------------------------------------------------- /APC20/BackgroundComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/APC20/BackgroundComponent.py -------------------------------------------------------------------------------- /APC20/ShiftableSelectorComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/APC20/ShiftableSelectorComponent.py -------------------------------------------------------------------------------- /APC20/ShiftableZoomingComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/APC20/ShiftableZoomingComponent.py -------------------------------------------------------------------------------- /APC20/SliderModesComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/APC20/SliderModesComponent.py -------------------------------------------------------------------------------- /APC20/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/APC20/__init__.py -------------------------------------------------------------------------------- /APC20/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/APC20/consts.py -------------------------------------------------------------------------------- /APC40/APC40.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/APC40/APC40.py -------------------------------------------------------------------------------- /APC40/SessionComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/APC40/SessionComponent.py -------------------------------------------------------------------------------- /APC40/TransportComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/APC40/TransportComponent.py -------------------------------------------------------------------------------- /APC40/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/APC40/__init__.py -------------------------------------------------------------------------------- /APC40_MkII/APC40_MkII.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/APC40_MkII/APC40_MkII.py -------------------------------------------------------------------------------- /APC40_MkII/BankToggleComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/APC40_MkII/BankToggleComponent.py -------------------------------------------------------------------------------- /APC40_MkII/MixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/APC40_MkII/MixerComponent.py -------------------------------------------------------------------------------- /APC40_MkII/QuantizationComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/APC40_MkII/QuantizationComponent.py -------------------------------------------------------------------------------- /APC40_MkII/TransportComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/APC40_MkII/TransportComponent.py -------------------------------------------------------------------------------- /APC40_MkII/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/APC40_MkII/__init__.py -------------------------------------------------------------------------------- /APC_Key_25/APC_Key_25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/APC_Key_25/APC_Key_25.py -------------------------------------------------------------------------------- /APC_Key_25/MixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/APC_Key_25/MixerComponent.py -------------------------------------------------------------------------------- /APC_Key_25/SendToggleComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/APC_Key_25/SendToggleComponent.py -------------------------------------------------------------------------------- /APC_Key_25/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/APC_Key_25/__init__.py -------------------------------------------------------------------------------- /APC_mini/APC_mini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/APC_mini/APC_mini.py -------------------------------------------------------------------------------- /APC_mini/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/APC_mini/__init__.py -------------------------------------------------------------------------------- /Alesis_V/Alesis_V.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Alesis_V/Alesis_V.py -------------------------------------------------------------------------------- /Alesis_V/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Alesis_V/__init__.py -------------------------------------------------------------------------------- /Alesis_VI/Alesis_VI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Alesis_VI/Alesis_VI.py -------------------------------------------------------------------------------- /Alesis_VI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Alesis_VI/__init__.py -------------------------------------------------------------------------------- /Alesis_VX/Alesis_VX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Alesis_VX/Alesis_VX.py -------------------------------------------------------------------------------- /Alesis_VX/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Alesis_VX/__init__.py -------------------------------------------------------------------------------- /Axiom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Axiom/__init__.py -------------------------------------------------------------------------------- /Axiom/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Axiom/config.py -------------------------------------------------------------------------------- /Axiom/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Axiom/consts.py -------------------------------------------------------------------------------- /AxiomPro/AxiomPro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/AxiomPro/AxiomPro.py -------------------------------------------------------------------------------- /AxiomPro/DisplayingMixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/AxiomPro/DisplayingMixerComponent.py -------------------------------------------------------------------------------- /AxiomPro/EncoderMixerModeSelector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/AxiomPro/EncoderMixerModeSelector.py -------------------------------------------------------------------------------- /AxiomPro/MixerOrDeviceModeSelector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/AxiomPro/MixerOrDeviceModeSelector.py -------------------------------------------------------------------------------- /AxiomPro/NotifyingMixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/AxiomPro/NotifyingMixerComponent.py -------------------------------------------------------------------------------- /AxiomPro/PageableDeviceComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/AxiomPro/PageableDeviceComponent.py -------------------------------------------------------------------------------- /AxiomPro/PeekableEncoderElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/AxiomPro/PeekableEncoderElement.py -------------------------------------------------------------------------------- /AxiomPro/SelectButtonModeSelector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/AxiomPro/SelectButtonModeSelector.py -------------------------------------------------------------------------------- /AxiomPro/TransportViewModeSelector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/AxiomPro/TransportViewModeSelector.py -------------------------------------------------------------------------------- /AxiomPro/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/AxiomPro/__init__.py -------------------------------------------------------------------------------- /Axiom_25_Classic/Axiom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Axiom_25_Classic/Axiom.py -------------------------------------------------------------------------------- /Axiom_25_Classic/Preset.syx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Axiom_25_Classic/Preset.syx -------------------------------------------------------------------------------- /Axiom_25_Classic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Axiom_25_Classic/__init__.py -------------------------------------------------------------------------------- /Axiom_49_61_Classic/Axiom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Axiom_49_61_Classic/Axiom.py -------------------------------------------------------------------------------- /Axiom_49_61_Classic/Preset.syx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Axiom_49_61_Classic/Preset.syx -------------------------------------------------------------------------------- /Axiom_49_61_Classic/SliderSection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Axiom_49_61_Classic/SliderSection.py -------------------------------------------------------------------------------- /Axiom_49_61_Classic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Axiom_49_61_Classic/__init__.py -------------------------------------------------------------------------------- /Axiom_AIR_25_49_61/Axiom_AIR_25_49_61.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Axiom_AIR_25_49_61/Axiom_AIR_25_49_61.py -------------------------------------------------------------------------------- /Axiom_AIR_25_49_61/DeviceNavComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Axiom_AIR_25_49_61/DeviceNavComponent.py -------------------------------------------------------------------------------- /Axiom_AIR_25_49_61/FaderModeSelector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Axiom_AIR_25_49_61/FaderModeSelector.py -------------------------------------------------------------------------------- /Axiom_AIR_25_49_61/MainModeSelector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Axiom_AIR_25_49_61/MainModeSelector.py -------------------------------------------------------------------------------- /Axiom_AIR_25_49_61/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Axiom_AIR_25_49_61/__init__.py -------------------------------------------------------------------------------- /Axiom_AIR_25_49_61/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Axiom_AIR_25_49_61/consts.py -------------------------------------------------------------------------------- /Axiom_AIR_Mini32/AxiomAirMini32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Axiom_AIR_Mini32/AxiomAirMini32.py -------------------------------------------------------------------------------- /Axiom_AIR_Mini32/DeviceNavComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Axiom_AIR_Mini32/DeviceNavComponent.py -------------------------------------------------------------------------------- /Axiom_AIR_Mini32/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Axiom_AIR_Mini32/__init__.py -------------------------------------------------------------------------------- /Axiom_DirectLink/Axiom_DirectLink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Axiom_DirectLink/Axiom_DirectLink.py -------------------------------------------------------------------------------- /Axiom_DirectLink/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Axiom_DirectLink/__init__.py -------------------------------------------------------------------------------- /BCF2000/Preset.syx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/BCF2000/Preset.syx -------------------------------------------------------------------------------- /BCF2000/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/BCF2000/__init__.py -------------------------------------------------------------------------------- /BCF2000/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/BCF2000/config.py -------------------------------------------------------------------------------- /BCF2000/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/BCF2000/consts.py -------------------------------------------------------------------------------- /BCR2000/Preset.syx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/BCR2000/Preset.syx -------------------------------------------------------------------------------- /BCR2000/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/BCR2000/__init__.py -------------------------------------------------------------------------------- /BCR2000/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/BCR2000/config.py -------------------------------------------------------------------------------- /BCR2000/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/BCR2000/consts.py -------------------------------------------------------------------------------- /BeatStep/BeatStep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/BeatStep/BeatStep.py -------------------------------------------------------------------------------- /BeatStep/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/BeatStep/__init__.py -------------------------------------------------------------------------------- /FireOne/FireOne.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/FireOne/FireOne.py -------------------------------------------------------------------------------- /FireOne/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/FireOne/__init__.py -------------------------------------------------------------------------------- /KONTROL49/Preset.syx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/KONTROL49/Preset.syx -------------------------------------------------------------------------------- /KONTROL49/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/KONTROL49/__init__.py -------------------------------------------------------------------------------- /KONTROL49/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/KONTROL49/config.py -------------------------------------------------------------------------------- /KONTROL49/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/KONTROL49/consts.py -------------------------------------------------------------------------------- /KeyFadr/KeyFadr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/KeyFadr/KeyFadr.py -------------------------------------------------------------------------------- /KeyFadr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/KeyFadr/__init__.py -------------------------------------------------------------------------------- /KeyLab/DeviceNavigationComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/KeyLab/DeviceNavigationComponent.py -------------------------------------------------------------------------------- /KeyLab/DisplayElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/KeyLab/DisplayElement.py -------------------------------------------------------------------------------- /KeyLab/KeyLab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/KeyLab/KeyLab.py -------------------------------------------------------------------------------- /KeyLab/MixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/KeyLab/MixerComponent.py -------------------------------------------------------------------------------- /KeyLab/SessionComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/KeyLab/SessionComponent.py -------------------------------------------------------------------------------- /KeyLab/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/KeyLab/__init__.py -------------------------------------------------------------------------------- /KeyLab_88/KeyLab88.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/KeyLab_88/KeyLab88.py -------------------------------------------------------------------------------- /KeyLab_88/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/KeyLab_88/__init__.py -------------------------------------------------------------------------------- /KeyPad/CombinedButtonsElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/KeyPad/CombinedButtonsElement.py -------------------------------------------------------------------------------- /KeyPad/CuePointControlComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/KeyPad/CuePointControlComponent.py -------------------------------------------------------------------------------- /KeyPad/KeyPad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/KeyPad/KeyPad.py -------------------------------------------------------------------------------- /KeyPad/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/KeyPad/__init__.py -------------------------------------------------------------------------------- /Keystation_Pro_88/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Keystation_Pro_88/__init__.py -------------------------------------------------------------------------------- /Keystation_Pro_88/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Keystation_Pro_88/config.py -------------------------------------------------------------------------------- /Keystation_Pro_88/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Keystation_Pro_88/consts.py -------------------------------------------------------------------------------- /LPD8/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LPD8/__init__.py -------------------------------------------------------------------------------- /LPD8/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LPD8/config.py -------------------------------------------------------------------------------- /LPD8/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LPD8/consts.py -------------------------------------------------------------------------------- /LV1_LX1/LV1_LX1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LV1_LX1/LV1_LX1.py -------------------------------------------------------------------------------- /LV1_LX1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LV1_LX1/__init__.py -------------------------------------------------------------------------------- /LV2_LX2_LC2_LD2/Devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LV2_LX2_LC2_LD2/Devices.py -------------------------------------------------------------------------------- /LV2_LX2_LC2_LD2/DevicesXY.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LV2_LX2_LC2_LD2/DevicesXY.py -------------------------------------------------------------------------------- /LV2_LX2_LC2_LD2/FaderfoxComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LV2_LX2_LC2_LD2/FaderfoxComponent.py -------------------------------------------------------------------------------- /LV2_LX2_LC2_LD2/FaderfoxHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LV2_LX2_LC2_LD2/FaderfoxHelper.py -------------------------------------------------------------------------------- /LV2_LX2_LC2_LD2/FaderfoxScript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LV2_LX2_LC2_LD2/FaderfoxScript.py -------------------------------------------------------------------------------- /LV2_LX2_LC2_LD2/LV2DeviceController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LV2_LX2_LC2_LD2/LV2DeviceController.py -------------------------------------------------------------------------------- /LV2_LX2_LC2_LD2/LV2MixerController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LV2_LX2_LC2_LD2/LV2MixerController.py -------------------------------------------------------------------------------- /LV2_LX2_LC2_LD2/LV2_LX2_LC2_LD2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LV2_LX2_LC2_LD2/LV2_LX2_LC2_LD2.py -------------------------------------------------------------------------------- /LV2_LX2_LC2_LD2/ParamMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LV2_LX2_LC2_LD2/ParamMap.py -------------------------------------------------------------------------------- /LV2_LX2_LC2_LD2/Params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LV2_LX2_LC2_LD2/Params.py -------------------------------------------------------------------------------- /LV2_LX2_LC2_LD2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LV2_LX2_LC2_LD2/__init__.py -------------------------------------------------------------------------------- /LV2_LX2_LC2_LD2/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LV2_LX2_LC2_LD2/consts.py -------------------------------------------------------------------------------- /Launch_Control/ButtonSysexControl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launch_Control/ButtonSysexControl.py -------------------------------------------------------------------------------- /Launch_Control/Colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launch_Control/Colors.py -------------------------------------------------------------------------------- /Launch_Control/LaunchControl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launch_Control/LaunchControl.py -------------------------------------------------------------------------------- /Launch_Control/SpecialMixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launch_Control/SpecialMixerComponent.py -------------------------------------------------------------------------------- /Launch_Control/Sysex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launch_Control/Sysex.py -------------------------------------------------------------------------------- /Launch_Control/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launch_Control/__init__.py -------------------------------------------------------------------------------- /Launch_Control_XL/ButtonElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launch_Control_XL/ButtonElement.py -------------------------------------------------------------------------------- /Launch_Control_XL/DeviceComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launch_Control_XL/DeviceComponent.py -------------------------------------------------------------------------------- /Launch_Control_XL/LaunchControlXL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launch_Control_XL/LaunchControlXL.py -------------------------------------------------------------------------------- /Launch_Control_XL/MixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launch_Control_XL/MixerComponent.py -------------------------------------------------------------------------------- /Launch_Control_XL/SkinDefault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launch_Control_XL/SkinDefault.py -------------------------------------------------------------------------------- /Launch_Control_XL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launch_Control_XL/__init__.py -------------------------------------------------------------------------------- /Launchkey/Launchkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchkey/Launchkey.py -------------------------------------------------------------------------------- /Launchkey/SessionNavigationComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchkey/SessionNavigationComponent.py -------------------------------------------------------------------------------- /Launchkey/SpecialMixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchkey/SpecialMixerComponent.py -------------------------------------------------------------------------------- /Launchkey/TransportViewModeSelector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchkey/TransportViewModeSelector.py -------------------------------------------------------------------------------- /Launchkey/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchkey/__init__.py -------------------------------------------------------------------------------- /Launchkey/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchkey/consts.py -------------------------------------------------------------------------------- /Launchkey_MK2/BackgroundComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchkey_MK2/BackgroundComponent.py -------------------------------------------------------------------------------- /Launchkey_MK2/Colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchkey_MK2/Colors.py -------------------------------------------------------------------------------- /Launchkey_MK2/ControlElementUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchkey_MK2/ControlElementUtils.py -------------------------------------------------------------------------------- /Launchkey_MK2/DeviceComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchkey_MK2/DeviceComponent.py -------------------------------------------------------------------------------- /Launchkey_MK2/Launchkey_MK2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchkey_MK2/Launchkey_MK2.py -------------------------------------------------------------------------------- /Launchkey_MK2/MixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchkey_MK2/MixerComponent.py -------------------------------------------------------------------------------- /Launchkey_MK2/ModeUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchkey_MK2/ModeUtils.py -------------------------------------------------------------------------------- /Launchkey_MK2/SessionComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchkey_MK2/SessionComponent.py -------------------------------------------------------------------------------- /Launchkey_MK2/Skin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchkey_MK2/Skin.py -------------------------------------------------------------------------------- /Launchkey_MK2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchkey_MK2/__init__.py -------------------------------------------------------------------------------- /Launchkey_MK2/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchkey_MK2/consts.py -------------------------------------------------------------------------------- /Launchkey_Mini/LaunchkeyMini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchkey_Mini/LaunchkeyMini.py -------------------------------------------------------------------------------- /Launchkey_Mini/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchkey_Mini/__init__.py -------------------------------------------------------------------------------- /Launchpad/ConfigurableButtonElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad/ConfigurableButtonElement.py -------------------------------------------------------------------------------- /Launchpad/DefChannelStripComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad/DefChannelStripComponent.py -------------------------------------------------------------------------------- /Launchpad/Launchpad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad/Launchpad.py -------------------------------------------------------------------------------- /Launchpad/MainSelectorComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad/MainSelectorComponent.py -------------------------------------------------------------------------------- /Launchpad/PreciseButtonSliderElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad/PreciseButtonSliderElement.py -------------------------------------------------------------------------------- /Launchpad/SpecialMixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad/SpecialMixerComponent.py -------------------------------------------------------------------------------- /Launchpad/SpecialSessionComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad/SpecialSessionComponent.py -------------------------------------------------------------------------------- /Launchpad/SubSelectorComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad/SubSelectorComponent.py -------------------------------------------------------------------------------- /Launchpad/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad/__init__.py -------------------------------------------------------------------------------- /Launchpad_MK2/BackgroundComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_MK2/BackgroundComponent.py -------------------------------------------------------------------------------- /Launchpad_MK2/ChannelStripComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_MK2/ChannelStripComponent.py -------------------------------------------------------------------------------- /Launchpad_MK2/Colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_MK2/Colors.py -------------------------------------------------------------------------------- /Launchpad_MK2/ComponentUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_MK2/ComponentUtils.py -------------------------------------------------------------------------------- /Launchpad_MK2/ControlElementUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_MK2/ControlElementUtils.py -------------------------------------------------------------------------------- /Launchpad_MK2/Launchpad_MK2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_MK2/Launchpad_MK2.py -------------------------------------------------------------------------------- /Launchpad_MK2/MixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_MK2/MixerComponent.py -------------------------------------------------------------------------------- /Launchpad_MK2/ModeUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_MK2/ModeUtils.py -------------------------------------------------------------------------------- /Launchpad_MK2/SessionComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_MK2/SessionComponent.py -------------------------------------------------------------------------------- /Launchpad_MK2/SessionZoomingComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_MK2/SessionZoomingComponent.py -------------------------------------------------------------------------------- /Launchpad_MK2/Skin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_MK2/Skin.py -------------------------------------------------------------------------------- /Launchpad_MK2/SliderElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_MK2/SliderElement.py -------------------------------------------------------------------------------- /Launchpad_MK2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_MK2/__init__.py -------------------------------------------------------------------------------- /Launchpad_MK2/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_MK2/consts.py -------------------------------------------------------------------------------- /Launchpad_Pro/ActionsComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_Pro/ActionsComponent.py -------------------------------------------------------------------------------- /Launchpad_Pro/BackgroundComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_Pro/BackgroundComponent.py -------------------------------------------------------------------------------- /Launchpad_Pro/ClipActionsComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_Pro/ClipActionsComponent.py -------------------------------------------------------------------------------- /Launchpad_Pro/Colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_Pro/Colors.py -------------------------------------------------------------------------------- /Launchpad_Pro/DrumGroupComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_Pro/DrumGroupComponent.py -------------------------------------------------------------------------------- /Launchpad_Pro/Launchpad_Pro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_Pro/Launchpad_Pro.py -------------------------------------------------------------------------------- /Launchpad_Pro/MultiButtonElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_Pro/MultiButtonElement.py -------------------------------------------------------------------------------- /Launchpad_Pro/SkinDefault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_Pro/SkinDefault.py -------------------------------------------------------------------------------- /Launchpad_Pro/SlideComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_Pro/SlideComponent.py -------------------------------------------------------------------------------- /Launchpad_Pro/SliderElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_Pro/SliderElement.py -------------------------------------------------------------------------------- /Launchpad_Pro/SpecialDeviceComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_Pro/SpecialDeviceComponent.py -------------------------------------------------------------------------------- /Launchpad_Pro/SpecialMidiMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_Pro/SpecialMidiMap.py -------------------------------------------------------------------------------- /Launchpad_Pro/SpecialMixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_Pro/SpecialMixerComponent.py -------------------------------------------------------------------------------- /Launchpad_Pro/SpecialModesComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_Pro/SpecialModesComponent.py -------------------------------------------------------------------------------- /Launchpad_Pro/SpecialSessionComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_Pro/SpecialSessionComponent.py -------------------------------------------------------------------------------- /Launchpad_Pro/TargetTrackComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_Pro/TargetTrackComponent.py -------------------------------------------------------------------------------- /Launchpad_Pro/TranslationComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_Pro/TranslationComponent.py -------------------------------------------------------------------------------- /Launchpad_Pro/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_Pro/__init__.py -------------------------------------------------------------------------------- /Launchpad_Pro/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Launchpad_Pro/consts.py -------------------------------------------------------------------------------- /LiveControl_2_0/LC2ClipSlotComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_0/LC2ClipSlotComponent.py -------------------------------------------------------------------------------- /LiveControl_2_0/LC2MixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_0/LC2MixerComponent.py -------------------------------------------------------------------------------- /LiveControl_2_0/LC2Modulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_0/LC2Modulator.py -------------------------------------------------------------------------------- /LiveControl_2_0/LC2ParameterElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_0/LC2ParameterElement.py -------------------------------------------------------------------------------- /LiveControl_2_0/LC2SceneComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_0/LC2SceneComponent.py -------------------------------------------------------------------------------- /LiveControl_2_0/LC2Sequencer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_0/LC2Sequencer.py -------------------------------------------------------------------------------- /LiveControl_2_0/LC2SessionComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_0/LC2SessionComponent.py -------------------------------------------------------------------------------- /LiveControl_2_0/LC2SessionSnapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_0/LC2SessionSnapshot.py -------------------------------------------------------------------------------- /LiveControl_2_0/LC2Sysex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_0/LC2Sysex.py -------------------------------------------------------------------------------- /LiveControl_2_0/LC2TransportComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_0/LC2TransportComponent.py -------------------------------------------------------------------------------- /LiveControl_2_0/LiveControl2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_0/LiveControl2.py -------------------------------------------------------------------------------- /LiveControl_2_0/UserDict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_0/UserDict.py -------------------------------------------------------------------------------- /LiveControl_2_0/__future__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_0/__future__.py -------------------------------------------------------------------------------- /LiveControl_2_0/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_0/__init__.py -------------------------------------------------------------------------------- /LiveControl_2_0/copy_reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_0/copy_reg.py -------------------------------------------------------------------------------- /LiveControl_2_0/linecache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_0/linecache.py -------------------------------------------------------------------------------- /LiveControl_2_0/ntpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_0/ntpath.py -------------------------------------------------------------------------------- /LiveControl_2_0/os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_0/os.py -------------------------------------------------------------------------------- /LiveControl_2_0/posixpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_0/posixpath.py -------------------------------------------------------------------------------- /LiveControl_2_0/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_0/random.py -------------------------------------------------------------------------------- /LiveControl_2_0/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_0/stat.py -------------------------------------------------------------------------------- /LiveControl_2_0/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_0/types.py -------------------------------------------------------------------------------- /LiveControl_2_0/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_0/warnings.py -------------------------------------------------------------------------------- /LiveControl_2_1_3/LC2MixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_3/LC2MixerComponent.py -------------------------------------------------------------------------------- /LiveControl_2_1_3/LC2Modulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_3/LC2Modulator.py -------------------------------------------------------------------------------- /LiveControl_2_1_3/LC2ParameterElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_3/LC2ParameterElement.py -------------------------------------------------------------------------------- /LiveControl_2_1_3/LC2SceneComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_3/LC2SceneComponent.py -------------------------------------------------------------------------------- /LiveControl_2_1_3/LC2Sequencer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_3/LC2Sequencer.py -------------------------------------------------------------------------------- /LiveControl_2_1_3/LC2SessionComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_3/LC2SessionComponent.py -------------------------------------------------------------------------------- /LiveControl_2_1_3/LC2SessionSnapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_3/LC2SessionSnapshot.py -------------------------------------------------------------------------------- /LiveControl_2_1_3/LC2Sysex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_3/LC2Sysex.py -------------------------------------------------------------------------------- /LiveControl_2_1_3/LiveControl2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_3/LiveControl2.py -------------------------------------------------------------------------------- /LiveControl_2_1_3/UserDict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_3/UserDict.py -------------------------------------------------------------------------------- /LiveControl_2_1_3/__future__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_3/__future__.py -------------------------------------------------------------------------------- /LiveControl_2_1_3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_3/__init__.py -------------------------------------------------------------------------------- /LiveControl_2_1_3/copy_reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_3/copy_reg.py -------------------------------------------------------------------------------- /LiveControl_2_1_3/linecache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_3/linecache.py -------------------------------------------------------------------------------- /LiveControl_2_1_3/ntpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_3/ntpath.py -------------------------------------------------------------------------------- /LiveControl_2_1_3/os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_3/os.py -------------------------------------------------------------------------------- /LiveControl_2_1_3/posixpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_3/posixpath.py -------------------------------------------------------------------------------- /LiveControl_2_1_3/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_3/random.py -------------------------------------------------------------------------------- /LiveControl_2_1_3/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_3/stat.py -------------------------------------------------------------------------------- /LiveControl_2_1_3/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_3/types.py -------------------------------------------------------------------------------- /LiveControl_2_1_3/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_3/warnings.py -------------------------------------------------------------------------------- /LiveControl_2_1_31/LC2MixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_31/LC2MixerComponent.py -------------------------------------------------------------------------------- /LiveControl_2_1_31/LC2Modulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_31/LC2Modulator.py -------------------------------------------------------------------------------- /LiveControl_2_1_31/LC2SceneComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_31/LC2SceneComponent.py -------------------------------------------------------------------------------- /LiveControl_2_1_31/LC2Sequencer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_31/LC2Sequencer.py -------------------------------------------------------------------------------- /LiveControl_2_1_31/LC2SessionSnapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_31/LC2SessionSnapshot.py -------------------------------------------------------------------------------- /LiveControl_2_1_31/LC2Sysex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_31/LC2Sysex.py -------------------------------------------------------------------------------- /LiveControl_2_1_31/LiveControl2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_31/LiveControl2.py -------------------------------------------------------------------------------- /LiveControl_2_1_31/UserDict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_31/UserDict.py -------------------------------------------------------------------------------- /LiveControl_2_1_31/__future__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_31/__future__.py -------------------------------------------------------------------------------- /LiveControl_2_1_31/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_31/__init__.py -------------------------------------------------------------------------------- /LiveControl_2_1_31/copy_reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_31/copy_reg.py -------------------------------------------------------------------------------- /LiveControl_2_1_31/linecache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_31/linecache.py -------------------------------------------------------------------------------- /LiveControl_2_1_31/ntpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_31/ntpath.py -------------------------------------------------------------------------------- /LiveControl_2_1_31/os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_31/os.py -------------------------------------------------------------------------------- /LiveControl_2_1_31/posixpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_31/posixpath.py -------------------------------------------------------------------------------- /LiveControl_2_1_31/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_31/random.py -------------------------------------------------------------------------------- /LiveControl_2_1_31/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_31/stat.py -------------------------------------------------------------------------------- /LiveControl_2_1_31/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_31/types.py -------------------------------------------------------------------------------- /LiveControl_2_1_31/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_31/warnings.py -------------------------------------------------------------------------------- /LiveControl_2_1_32/LC2MixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_32/LC2MixerComponent.py -------------------------------------------------------------------------------- /LiveControl_2_1_32/LC2Modulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_32/LC2Modulator.py -------------------------------------------------------------------------------- /LiveControl_2_1_32/LC2SceneComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_32/LC2SceneComponent.py -------------------------------------------------------------------------------- /LiveControl_2_1_32/LC2Sequencer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_32/LC2Sequencer.py -------------------------------------------------------------------------------- /LiveControl_2_1_32/LC2SessionSnapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_32/LC2SessionSnapshot.py -------------------------------------------------------------------------------- /LiveControl_2_1_32/LC2Sysex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_32/LC2Sysex.py -------------------------------------------------------------------------------- /LiveControl_2_1_32/LiveControl2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_32/LiveControl2.py -------------------------------------------------------------------------------- /LiveControl_2_1_32/UserDict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_32/UserDict.py -------------------------------------------------------------------------------- /LiveControl_2_1_32/__future__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_32/__future__.py -------------------------------------------------------------------------------- /LiveControl_2_1_32/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_32/__init__.py -------------------------------------------------------------------------------- /LiveControl_2_1_32/copy_reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_32/copy_reg.py -------------------------------------------------------------------------------- /LiveControl_2_1_32/linecache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_32/linecache.py -------------------------------------------------------------------------------- /LiveControl_2_1_32/ntpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_32/ntpath.py -------------------------------------------------------------------------------- /LiveControl_2_1_32/os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_32/os.py -------------------------------------------------------------------------------- /LiveControl_2_1_32/posixpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_32/posixpath.py -------------------------------------------------------------------------------- /LiveControl_2_1_32/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_32/random.py -------------------------------------------------------------------------------- /LiveControl_2_1_32/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_32/stat.py -------------------------------------------------------------------------------- /LiveControl_2_1_32/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_32/types.py -------------------------------------------------------------------------------- /LiveControl_2_1_32/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/LiveControl_2_1_32/warnings.py -------------------------------------------------------------------------------- /MIDI_Mix/ControlElementUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MIDI_Mix/ControlElementUtils.py -------------------------------------------------------------------------------- /MIDI_Mix/MIDI_Mix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MIDI_Mix/MIDI_Mix.py -------------------------------------------------------------------------------- /MIDI_Mix/MixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MIDI_Mix/MixerComponent.py -------------------------------------------------------------------------------- /MIDI_Mix/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MIDI_Mix/__init__.py -------------------------------------------------------------------------------- /MPD18/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPD18/__init__.py -------------------------------------------------------------------------------- /MPD18/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPD18/config.py -------------------------------------------------------------------------------- /MPD18/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPD18/consts.py -------------------------------------------------------------------------------- /MPD218/MPD218.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPD218/MPD218.py -------------------------------------------------------------------------------- /MPD218/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPD218/__init__.py -------------------------------------------------------------------------------- /MPD226/MPD226.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPD226/MPD226.py -------------------------------------------------------------------------------- /MPD226/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPD226/__init__.py -------------------------------------------------------------------------------- /MPD232/MPD232.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPD232/MPD232.py -------------------------------------------------------------------------------- /MPD232/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPD232/__init__.py -------------------------------------------------------------------------------- /MPD24/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPD24/__init__.py -------------------------------------------------------------------------------- /MPD24/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPD24/config.py -------------------------------------------------------------------------------- /MPD24/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPD24/consts.py -------------------------------------------------------------------------------- /MPD32/Preset.syx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPD32/Preset.syx -------------------------------------------------------------------------------- /MPD32/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPD32/__init__.py -------------------------------------------------------------------------------- /MPD32/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPD32/config.py -------------------------------------------------------------------------------- /MPD32/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPD32/consts.py -------------------------------------------------------------------------------- /MPK225/MPK225.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPK225/MPK225.py -------------------------------------------------------------------------------- /MPK225/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPK225/__init__.py -------------------------------------------------------------------------------- /MPK249/MPK249.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPK249/MPK249.py -------------------------------------------------------------------------------- /MPK249/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPK249/__init__.py -------------------------------------------------------------------------------- /MPK25/Preset.syx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPK25/Preset.syx -------------------------------------------------------------------------------- /MPK25/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPK25/__init__.py -------------------------------------------------------------------------------- /MPK25/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPK25/config.py -------------------------------------------------------------------------------- /MPK25/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPK25/consts.py -------------------------------------------------------------------------------- /MPK261/MPK261.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPK261/MPK261.py -------------------------------------------------------------------------------- /MPK261/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPK261/__init__.py -------------------------------------------------------------------------------- /MPK49/Preset.syx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPK49/Preset.syx -------------------------------------------------------------------------------- /MPK49/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPK49/__init__.py -------------------------------------------------------------------------------- /MPK49/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPK49/config.py -------------------------------------------------------------------------------- /MPK49/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPK49/consts.py -------------------------------------------------------------------------------- /MPK61/Preset.syx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPK61/Preset.syx -------------------------------------------------------------------------------- /MPK61/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPK61/__init__.py -------------------------------------------------------------------------------- /MPK61/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPK61/config.py -------------------------------------------------------------------------------- /MPK61/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPK61/consts.py -------------------------------------------------------------------------------- /MPK88/Preset.syx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPK88/Preset.syx -------------------------------------------------------------------------------- /MPK88/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPK88/__init__.py -------------------------------------------------------------------------------- /MPK88/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPK88/config.py -------------------------------------------------------------------------------- /MPK88/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPK88/consts.py -------------------------------------------------------------------------------- /MPK_mini/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPK_mini/__init__.py -------------------------------------------------------------------------------- /MPK_mini/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPK_mini/config.py -------------------------------------------------------------------------------- /MPK_mini/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MPK_mini/consts.py -------------------------------------------------------------------------------- /MackieControl/ChannelStrip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MackieControl/ChannelStrip.py -------------------------------------------------------------------------------- /MackieControl/ChannelStripController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MackieControl/ChannelStripController.py -------------------------------------------------------------------------------- /MackieControl/MackieControl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MackieControl/MackieControl.py -------------------------------------------------------------------------------- /MackieControl/MackieControlComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MackieControl/MackieControlComponent.py -------------------------------------------------------------------------------- /MackieControl/MainDisplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MackieControl/MainDisplay.py -------------------------------------------------------------------------------- /MackieControl/MainDisplayController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MackieControl/MainDisplayController.py -------------------------------------------------------------------------------- /MackieControl/SoftwareController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MackieControl/SoftwareController.py -------------------------------------------------------------------------------- /MackieControl/TimeDisplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MackieControl/TimeDisplay.py -------------------------------------------------------------------------------- /MackieControl/Transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MackieControl/Transport.py -------------------------------------------------------------------------------- /MackieControl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MackieControl/__init__.py -------------------------------------------------------------------------------- /MackieControl/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MackieControl/consts.py -------------------------------------------------------------------------------- /MackieControlXT/MackieControlXT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MackieControlXT/MackieControlXT.py -------------------------------------------------------------------------------- /MackieControlXT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MackieControlXT/__init__.py -------------------------------------------------------------------------------- /MackieControl_Classic/ChannelStrip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MackieControl_Classic/ChannelStrip.py -------------------------------------------------------------------------------- /MackieControl_Classic/MackieControl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MackieControl_Classic/MackieControl.py -------------------------------------------------------------------------------- /MackieControl_Classic/MainDisplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MackieControl_Classic/MainDisplay.py -------------------------------------------------------------------------------- /MackieControl_Classic/TimeDisplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MackieControl_Classic/TimeDisplay.py -------------------------------------------------------------------------------- /MackieControl_Classic/Transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MackieControl_Classic/Transport.py -------------------------------------------------------------------------------- /MackieControl_Classic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MackieControl_Classic/__init__.py -------------------------------------------------------------------------------- /MackieControl_Classic/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MackieControl_Classic/consts.py -------------------------------------------------------------------------------- /Maschine/AudioClipEditComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Maschine/AudioClipEditComponent.py -------------------------------------------------------------------------------- /Maschine/ControlMode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Maschine/ControlMode.py -------------------------------------------------------------------------------- /Maschine/DrumMode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Maschine/DrumMode.py -------------------------------------------------------------------------------- /Maschine/EditSection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Maschine/EditSection.py -------------------------------------------------------------------------------- /Maschine/GatedColorButton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Maschine/GatedColorButton.py -------------------------------------------------------------------------------- /Maschine/KnobSection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Maschine/KnobSection.py -------------------------------------------------------------------------------- /Maschine/MIDI_Map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Maschine/MIDI_Map.py -------------------------------------------------------------------------------- /Maschine/Maschine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Maschine/Maschine.py -------------------------------------------------------------------------------- /Maschine/MaschineColorSelectMode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Maschine/MaschineColorSelectMode.py -------------------------------------------------------------------------------- /Maschine/MaschineDeviceComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Maschine/MaschineDeviceComponent.py -------------------------------------------------------------------------------- /Maschine/MaschineMixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Maschine/MaschineMixerComponent.py -------------------------------------------------------------------------------- /Maschine/MaschineMk1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Maschine/MaschineMk1.py -------------------------------------------------------------------------------- /Maschine/MaschineMode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Maschine/MaschineMode.py -------------------------------------------------------------------------------- /Maschine/MaschineSessionComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Maschine/MaschineSessionComponent.py -------------------------------------------------------------------------------- /Maschine/MaschineTransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Maschine/MaschineTransport.py -------------------------------------------------------------------------------- /Maschine/MidiEditSection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Maschine/MidiEditSection.py -------------------------------------------------------------------------------- /Maschine/ModClipSlotComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Maschine/ModClipSlotComponent.py -------------------------------------------------------------------------------- /Maschine/ModSceneComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Maschine/ModSceneComponent.py -------------------------------------------------------------------------------- /Maschine/ModeSelector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Maschine/ModeSelector.py -------------------------------------------------------------------------------- /Maschine/MonoGatedButton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Maschine/MonoGatedButton.py -------------------------------------------------------------------------------- /Maschine/MonoNavSection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Maschine/MonoNavSection.py -------------------------------------------------------------------------------- /Maschine/NoteRepeatComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Maschine/NoteRepeatComponent.py -------------------------------------------------------------------------------- /Maschine/PadButton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Maschine/PadButton.py -------------------------------------------------------------------------------- /Maschine/PadMode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Maschine/PadMode.py -------------------------------------------------------------------------------- /Maschine/PadScale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Maschine/PadScale.py -------------------------------------------------------------------------------- /Maschine/SceneMode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Maschine/SceneMode.py -------------------------------------------------------------------------------- /Maschine/StateButton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Maschine/StateButton.py -------------------------------------------------------------------------------- /Maschine/TrackModMode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Maschine/TrackModMode.py -------------------------------------------------------------------------------- /Maschine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Maschine/__init__.py -------------------------------------------------------------------------------- /MasterControl/MasterControl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MasterControl/MasterControl.py -------------------------------------------------------------------------------- /MasterControl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MasterControl/__init__.py -------------------------------------------------------------------------------- /MidAir25/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MidAir25/__init__.py -------------------------------------------------------------------------------- /MidAir25/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MidAir25/config.py -------------------------------------------------------------------------------- /MidAir25/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MidAir25/consts.py -------------------------------------------------------------------------------- /MiniLab/MiniLab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MiniLab/MiniLab.py -------------------------------------------------------------------------------- /MiniLab/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/MiniLab/__init__.py -------------------------------------------------------------------------------- /Nocturn2/DeviceController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Nocturn2/DeviceController.py -------------------------------------------------------------------------------- /Nocturn2/MixerController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Nocturn2/MixerController.py -------------------------------------------------------------------------------- /Nocturn2/Nocturn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Nocturn2/Nocturn.py -------------------------------------------------------------------------------- /Nocturn2/NocturnComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Nocturn2/NocturnComponent.py -------------------------------------------------------------------------------- /Nocturn2/PlayingController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Nocturn2/PlayingController.py -------------------------------------------------------------------------------- /Nocturn2/SceneController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Nocturn2/SceneController.py -------------------------------------------------------------------------------- /Nocturn2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Nocturn2/__init__.py -------------------------------------------------------------------------------- /Nocturn2/apihelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Nocturn2/apihelper.py -------------------------------------------------------------------------------- /Nocturn2/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Nocturn2/consts.py -------------------------------------------------------------------------------- /Novation_Impulse/EncoderModeSelector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Novation_Impulse/EncoderModeSelector.py -------------------------------------------------------------------------------- /Novation_Impulse/Novation_Impulse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Novation_Impulse/Novation_Impulse.py -------------------------------------------------------------------------------- /Novation_Impulse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Novation_Impulse/__init__.py -------------------------------------------------------------------------------- /Novation_Impulse2/EncoderModeSelector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Novation_Impulse2/EncoderModeSelector.py -------------------------------------------------------------------------------- /Novation_Impulse2/Novation_Impulse2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Novation_Impulse2/Novation_Impulse2.py -------------------------------------------------------------------------------- /Novation_Impulse2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Novation_Impulse2/__init__.py -------------------------------------------------------------------------------- /Novation_Impulse2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Novation_Impulse2/readme.txt -------------------------------------------------------------------------------- /O2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/O2/__init__.py -------------------------------------------------------------------------------- /O2/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/O2/config.py -------------------------------------------------------------------------------- /O2/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/O2/consts.py -------------------------------------------------------------------------------- /OpenLabs/OpenLabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/OpenLabs/OpenLabs.py -------------------------------------------------------------------------------- /OpenLabs/SpecialDeviceComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/OpenLabs/SpecialDeviceComponent.py -------------------------------------------------------------------------------- /OpenLabs/SpecialTransportComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/OpenLabs/SpecialTransportComponent.py -------------------------------------------------------------------------------- /OpenLabs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/OpenLabs/__init__.py -------------------------------------------------------------------------------- /Oxygen49_61/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Oxygen49_61/__init__.py -------------------------------------------------------------------------------- /Oxygen49_61/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Oxygen49_61/config.py -------------------------------------------------------------------------------- /Oxygen49_61/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Oxygen49_61/consts.py -------------------------------------------------------------------------------- /Oxygen8/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Oxygen8/__init__.py -------------------------------------------------------------------------------- /Oxygen8/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Oxygen8/config.py -------------------------------------------------------------------------------- /Oxygen8/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Oxygen8/consts.py -------------------------------------------------------------------------------- /Oxygen8v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Oxygen8v2/__init__.py -------------------------------------------------------------------------------- /Oxygen8v2/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Oxygen8v2/config.py -------------------------------------------------------------------------------- /Oxygen8v2/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Oxygen8v2/consts.py -------------------------------------------------------------------------------- /Oxygen_3rd_Gen/Oxygen_3rd_Gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Oxygen_3rd_Gen/Oxygen_3rd_Gen.py -------------------------------------------------------------------------------- /Oxygen_3rd_Gen/SpecialMixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Oxygen_3rd_Gen/SpecialMixerComponent.py -------------------------------------------------------------------------------- /Oxygen_3rd_Gen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Oxygen_3rd_Gen/__init__.py -------------------------------------------------------------------------------- /Oxygen_4th_Gen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Oxygen_4th_Gen/__init__.py -------------------------------------------------------------------------------- /Ozone/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Ozone/__init__.py -------------------------------------------------------------------------------- /Ozone/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Ozone/config.py -------------------------------------------------------------------------------- /Ozone/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Ozone/consts.py -------------------------------------------------------------------------------- /Ozonic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Ozonic/__init__.py -------------------------------------------------------------------------------- /Ozonic/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Ozonic/config.py -------------------------------------------------------------------------------- /Ozonic/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Ozonic/consts.py -------------------------------------------------------------------------------- /Photon_25/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Photon_25/__init__.py -------------------------------------------------------------------------------- /Photon_25/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Photon_25/config.py -------------------------------------------------------------------------------- /Photon_25/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Photon_25/consts.py -------------------------------------------------------------------------------- /Photon_X25/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Photon_X25/__init__.py -------------------------------------------------------------------------------- /Photon_X25/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Photon_X25/config.py -------------------------------------------------------------------------------- /Photon_X25/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Photon_X25/consts.py -------------------------------------------------------------------------------- /ProjectMixIO/ProjectMixIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/ProjectMixIO/ProjectMixIO.py -------------------------------------------------------------------------------- /ProjectMixIO/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/ProjectMixIO/__init__.py -------------------------------------------------------------------------------- /Push/AccentComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/AccentComponent.py -------------------------------------------------------------------------------- /Push/ActionWithOptionsComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/ActionWithOptionsComponent.py -------------------------------------------------------------------------------- /Push/Actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/Actions.py -------------------------------------------------------------------------------- /Push/AutoArmComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/AutoArmComponent.py -------------------------------------------------------------------------------- /Push/AutomationComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/AutomationComponent.py -------------------------------------------------------------------------------- /Push/BrowserComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/BrowserComponent.py -------------------------------------------------------------------------------- /Push/BrowserModes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/BrowserModes.py -------------------------------------------------------------------------------- /Push/ClipControlComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/ClipControlComponent.py -------------------------------------------------------------------------------- /Push/Colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/Colors.py -------------------------------------------------------------------------------- /Push/ConfigurableButtonElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/ConfigurableButtonElement.py -------------------------------------------------------------------------------- /Push/ControlElementFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/ControlElementFactory.py -------------------------------------------------------------------------------- /Push/DeviceNavigationComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/DeviceNavigationComponent.py -------------------------------------------------------------------------------- /Push/DeviceParameterComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/DeviceParameterComponent.py -------------------------------------------------------------------------------- /Push/DrumGroupComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/DrumGroupComponent.py -------------------------------------------------------------------------------- /Push/FirmwareHandling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/FirmwareHandling.py -------------------------------------------------------------------------------- /Push/GlobalPadParameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/GlobalPadParameters.py -------------------------------------------------------------------------------- /Push/GridResolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/GridResolution.py -------------------------------------------------------------------------------- /Push/HandshakeComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/HandshakeComponent.py -------------------------------------------------------------------------------- /Push/InstrumentComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/InstrumentComponent.py -------------------------------------------------------------------------------- /Push/LoopSelectorComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/LoopSelectorComponent.py -------------------------------------------------------------------------------- /Push/MatrixMaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/MatrixMaps.py -------------------------------------------------------------------------------- /Push/MelodicComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/MelodicComponent.py -------------------------------------------------------------------------------- /Push/MelodicPattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/MelodicPattern.py -------------------------------------------------------------------------------- /Push/MessageBoxComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/MessageBoxComponent.py -------------------------------------------------------------------------------- /Push/NavigationNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/NavigationNode.py -------------------------------------------------------------------------------- /Push/NoteEditorComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/NoteEditorComponent.py -------------------------------------------------------------------------------- /Push/NoteEditorPaginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/NoteEditorPaginator.py -------------------------------------------------------------------------------- /Push/NoteRepeatComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/NoteRepeatComponent.py -------------------------------------------------------------------------------- /Push/NoteSettingsComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/NoteSettingsComponent.py -------------------------------------------------------------------------------- /Push/PadControl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/PadControl.py -------------------------------------------------------------------------------- /Push/PadSensitivity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/PadSensitivity.py -------------------------------------------------------------------------------- /Push/PlayheadComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/PlayheadComponent.py -------------------------------------------------------------------------------- /Push/PlayheadElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/PlayheadElement.py -------------------------------------------------------------------------------- /Push/Preset.syx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/Preset.syx -------------------------------------------------------------------------------- /Push/ProviderDeviceComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/ProviderDeviceComponent.py -------------------------------------------------------------------------------- /Push/Push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/Push.py -------------------------------------------------------------------------------- /Push/QuantizationComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/QuantizationComponent.py -------------------------------------------------------------------------------- /Push/ScrollableList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/ScrollableList.py -------------------------------------------------------------------------------- /Push/ScrollableListComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/ScrollableListComponent.py -------------------------------------------------------------------------------- /Push/SelectPlayingClipComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/SelectPlayingClipComponent.py -------------------------------------------------------------------------------- /Push/SelectedTrackParameterProvider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/SelectedTrackParameterProvider.py -------------------------------------------------------------------------------- /Push/Selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/Selection.py -------------------------------------------------------------------------------- /Push/SessionRecordingComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/SessionRecordingComponent.py -------------------------------------------------------------------------------- /Push/Setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/Setting.py -------------------------------------------------------------------------------- /Push/Settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/Settings.py -------------------------------------------------------------------------------- /Push/Setup.syx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/Setup.syx -------------------------------------------------------------------------------- /Push/SkinDefault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/SkinDefault.py -------------------------------------------------------------------------------- /Push/SlideComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/SlideComponent.py -------------------------------------------------------------------------------- /Push/SlideableTouchStripComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/SlideableTouchStripComponent.py -------------------------------------------------------------------------------- /Push/SpecialChanStripComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/SpecialChanStripComponent.py -------------------------------------------------------------------------------- /Push/SpecialMixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/SpecialMixerComponent.py -------------------------------------------------------------------------------- /Push/SpecialPhysicalDisplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/SpecialPhysicalDisplay.py -------------------------------------------------------------------------------- /Push/SpecialSessionComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/SpecialSessionComponent.py -------------------------------------------------------------------------------- /Push/StepSeqComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/StepSeqComponent.py -------------------------------------------------------------------------------- /Push/Sysex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/Sysex.py -------------------------------------------------------------------------------- /Push/TouchEncoderElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/TouchEncoderElement.py -------------------------------------------------------------------------------- /Push/TouchStripController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/TouchStripController.py -------------------------------------------------------------------------------- /Push/TouchStripElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/TouchStripElement.py -------------------------------------------------------------------------------- /Push/TrackFrozenMode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/TrackFrozenMode.py -------------------------------------------------------------------------------- /Push/TransportComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/TransportComponent.py -------------------------------------------------------------------------------- /Push/UserSettingsComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/UserSettingsComponent.py -------------------------------------------------------------------------------- /Push/ValueComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/ValueComponent.py -------------------------------------------------------------------------------- /Push/ViewControlComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/ViewControlComponent.py -------------------------------------------------------------------------------- /Push/WithPriority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/WithPriority.py -------------------------------------------------------------------------------- /Push/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/__init__.py -------------------------------------------------------------------------------- /Push/browser_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/browser_component.py -------------------------------------------------------------------------------- /Push/browser_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/browser_model.py -------------------------------------------------------------------------------- /Push/browser_model_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/browser_model_factory.py -------------------------------------------------------------------------------- /Push/browser_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/browser_query.py -------------------------------------------------------------------------------- /Push/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/consts.py -------------------------------------------------------------------------------- /Push/custom_bank_definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/custom_bank_definitions.py -------------------------------------------------------------------------------- /Push/device_navigation_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/device_navigation_component.py -------------------------------------------------------------------------------- /Push/drum_group_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/drum_group_component.py -------------------------------------------------------------------------------- /Push/elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/elements.py -------------------------------------------------------------------------------- /Push/firmware_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/firmware_handling.py -------------------------------------------------------------------------------- /Push/global_pad_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/global_pad_parameters.py -------------------------------------------------------------------------------- /Push/handshake_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/handshake_component.py -------------------------------------------------------------------------------- /Push/mode_behaviours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/mode_behaviours.py -------------------------------------------------------------------------------- /Push/multi_entry_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/multi_entry_mode.py -------------------------------------------------------------------------------- /Push/navigation_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/navigation_node.py -------------------------------------------------------------------------------- /Push/notification_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/notification_component.py -------------------------------------------------------------------------------- /Push/pad_sensitivity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/pad_sensitivity.py -------------------------------------------------------------------------------- /Push/quantization_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/quantization_settings.py -------------------------------------------------------------------------------- /Push/scales_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/scales_component.py -------------------------------------------------------------------------------- /Push/special_physical_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/special_physical_display.py -------------------------------------------------------------------------------- /Push/user_settings_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/user_settings_component.py -------------------------------------------------------------------------------- /Push/with_priority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push/with_priority.py -------------------------------------------------------------------------------- /Push2/.DS_Store_failed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Push2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/__init__.py -------------------------------------------------------------------------------- /Push2/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/actions.py -------------------------------------------------------------------------------- /Push2/automation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/automation.py -------------------------------------------------------------------------------- /Push2/bank_definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/bank_definitions.py -------------------------------------------------------------------------------- /Push2/bank_selection_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/bank_selection_component.py -------------------------------------------------------------------------------- /Push2/banking_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/banking_util.py -------------------------------------------------------------------------------- /Push2/browser_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/browser_component.py -------------------------------------------------------------------------------- /Push2/browser_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/browser_item.py -------------------------------------------------------------------------------- /Push2/browser_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/browser_list.py -------------------------------------------------------------------------------- /Push2/browser_modes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/browser_modes.py -------------------------------------------------------------------------------- /Push2/chain_selection_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/chain_selection_component.py -------------------------------------------------------------------------------- /Push2/clip_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/clip_control.py -------------------------------------------------------------------------------- /Push2/clip_decoration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/clip_decoration.py -------------------------------------------------------------------------------- /Push2/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/colors.py -------------------------------------------------------------------------------- /Push2/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/convert.py -------------------------------------------------------------------------------- /Push2/custom_bank_definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/custom_bank_definitions.py -------------------------------------------------------------------------------- /Push2/decoration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/decoration.py -------------------------------------------------------------------------------- /Push2/device_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/device_component.py -------------------------------------------------------------------------------- /Push2/device_decoration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/device_decoration.py -------------------------------------------------------------------------------- /Push2/device_enabling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/device_enabling.py -------------------------------------------------------------------------------- /Push2/device_navigation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/device_navigation.py -------------------------------------------------------------------------------- /Push2/device_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/device_options.py -------------------------------------------------------------------------------- /Push2/device_parameter_bank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/device_parameter_bank.py -------------------------------------------------------------------------------- /Push2/device_parameter_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/device_parameter_component.py -------------------------------------------------------------------------------- /Push2/device_view_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/device_view_component.py -------------------------------------------------------------------------------- /Push2/drum_group_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/drum_group_component.py -------------------------------------------------------------------------------- /Push2/drum_pad_parameter_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/drum_pad_parameter_component.py -------------------------------------------------------------------------------- /Push2/elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/elements.py -------------------------------------------------------------------------------- /Push2/firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/firmware.py -------------------------------------------------------------------------------- /Push2/hardware_settings_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/hardware_settings_component.py -------------------------------------------------------------------------------- /Push2/internal_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/internal_parameter.py -------------------------------------------------------------------------------- /Push2/item_lister_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/item_lister_component.py -------------------------------------------------------------------------------- /Push2/mapped_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/mapped_control.py -------------------------------------------------------------------------------- /Push2/master_track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/master_track.py -------------------------------------------------------------------------------- /Push2/mixable_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/mixable_utilities.py -------------------------------------------------------------------------------- /Push2/mixer_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/mixer_component.py -------------------------------------------------------------------------------- /Push2/mixer_control_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/mixer_control_component.py -------------------------------------------------------------------------------- /Push2/mode_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/mode_collector.py -------------------------------------------------------------------------------- /Push2/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/model/__init__.py -------------------------------------------------------------------------------- /Push2/model/declaration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/model/declaration.py -------------------------------------------------------------------------------- /Push2/model/generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/model/generation.py -------------------------------------------------------------------------------- /Push2/model/repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/model/repr.py -------------------------------------------------------------------------------- /Push2/model/uniqueid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/model/uniqueid.py -------------------------------------------------------------------------------- /Push2/mute_solo_stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/mute_solo_stop.py -------------------------------------------------------------------------------- /Push2/note_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/note_editor.py -------------------------------------------------------------------------------- /Push2/note_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/note_settings.py -------------------------------------------------------------------------------- /Push2/notification_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/notification_component.py -------------------------------------------------------------------------------- /Push2/observable_property_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/observable_property_alias.py -------------------------------------------------------------------------------- /Push2/pad_velocity_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/pad_velocity_curve.py -------------------------------------------------------------------------------- /Push2/parameter_slot_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/parameter_slot_description.py -------------------------------------------------------------------------------- /Push2/push2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/push2.py -------------------------------------------------------------------------------- /Push2/push2_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/push2_model.py -------------------------------------------------------------------------------- /Push2/real_time_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/real_time_channel.py -------------------------------------------------------------------------------- /Push2/scales_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/scales_component.py -------------------------------------------------------------------------------- /Push2/session_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/session_component.py -------------------------------------------------------------------------------- /Push2/session_recording.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/session_recording.py -------------------------------------------------------------------------------- /Push2/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/settings.py -------------------------------------------------------------------------------- /Push2/setup_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/setup_component.py -------------------------------------------------------------------------------- /Push2/simpler_slice_nudging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/simpler_slice_nudging.py -------------------------------------------------------------------------------- /Push2/simpler_zoom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/simpler_zoom.py -------------------------------------------------------------------------------- /Push2/skin_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/skin_default.py -------------------------------------------------------------------------------- /Push2/stop_clip_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/stop_clip_component.py -------------------------------------------------------------------------------- /Push2/sysex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/sysex.py -------------------------------------------------------------------------------- /Push2/track_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/track_list.py -------------------------------------------------------------------------------- /Push2/track_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/track_selection.py -------------------------------------------------------------------------------- /Push2/user_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/user_component.py -------------------------------------------------------------------------------- /Push2/waveform_navigation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Push2/waveform_navigation.py -------------------------------------------------------------------------------- /QuNeo/ConfigurableButtonElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/QuNeo/ConfigurableButtonElement.py -------------------------------------------------------------------------------- /QuNeo/MIDI_Map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/QuNeo/MIDI_Map.py -------------------------------------------------------------------------------- /QuNeo/QuNeo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/QuNeo/QuNeo.py -------------------------------------------------------------------------------- /QuNeo/SequencerMetronome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/QuNeo/SequencerMetronome.py -------------------------------------------------------------------------------- /QuNeo/SpecialChannelStripComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/QuNeo/SpecialChannelStripComponent.py -------------------------------------------------------------------------------- /QuNeo/SpecialMixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/QuNeo/SpecialMixerComponent.py -------------------------------------------------------------------------------- /QuNeo/SpecialSessionComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/QuNeo/SpecialSessionComponent.py -------------------------------------------------------------------------------- /QuNeo/SpecialTransportComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/QuNeo/SpecialTransportComponent.py -------------------------------------------------------------------------------- /QuNeo/VUMeter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/QuNeo/VUMeter.py -------------------------------------------------------------------------------- /QuNeo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/QuNeo/__init__.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/README.md -------------------------------------------------------------------------------- /Radium49_61/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Radium49_61/__init__.py -------------------------------------------------------------------------------- /Radium49_61/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Radium49_61/config.py -------------------------------------------------------------------------------- /Radium49_61/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Radium49_61/consts.py -------------------------------------------------------------------------------- /RemoteSL/DisplayController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/RemoteSL/DisplayController.py -------------------------------------------------------------------------------- /RemoteSL/EffectController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/RemoteSL/EffectController.py -------------------------------------------------------------------------------- /RemoteSL/MixerController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/RemoteSL/MixerController.py -------------------------------------------------------------------------------- /RemoteSL/RemoteSL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/RemoteSL/RemoteSL.py -------------------------------------------------------------------------------- /RemoteSL/RemoteSLComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/RemoteSL/RemoteSLComponent.py -------------------------------------------------------------------------------- /RemoteSL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/RemoteSL/__init__.py -------------------------------------------------------------------------------- /RemoteSL/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/RemoteSL/consts.py -------------------------------------------------------------------------------- /RemoteSL_Classic/DisplayController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/RemoteSL_Classic/DisplayController.py -------------------------------------------------------------------------------- /RemoteSL_Classic/EffectController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/RemoteSL_Classic/EffectController.py -------------------------------------------------------------------------------- /RemoteSL_Classic/MixerController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/RemoteSL_Classic/MixerController.py -------------------------------------------------------------------------------- /RemoteSL_Classic/RemoteSL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/RemoteSL_Classic/RemoteSL.py -------------------------------------------------------------------------------- /RemoteSL_Classic/RemoteSLComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/RemoteSL_Classic/RemoteSLComponent.py -------------------------------------------------------------------------------- /RemoteSL_Classic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/RemoteSL_Classic/__init__.py -------------------------------------------------------------------------------- /RemoteSL_Classic/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/RemoteSL_Classic/consts.py -------------------------------------------------------------------------------- /Roland_A_PRO/MixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Roland_A_PRO/MixerComponent.py -------------------------------------------------------------------------------- /Roland_A_PRO/Preset.syx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Roland_A_PRO/Preset.syx -------------------------------------------------------------------------------- /Roland_A_PRO/Roland_A_PRO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Roland_A_PRO/Roland_A_PRO.py -------------------------------------------------------------------------------- /Roland_A_PRO/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Roland_A_PRO/__init__.py -------------------------------------------------------------------------------- /Tranzport/Tranzport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Tranzport/Tranzport.py -------------------------------------------------------------------------------- /Tranzport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Tranzport/__init__.py -------------------------------------------------------------------------------- /Tranzport/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/Tranzport/consts.py -------------------------------------------------------------------------------- /TriggerFinger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/TriggerFinger/__init__.py -------------------------------------------------------------------------------- /TriggerFinger/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/TriggerFinger/config.py -------------------------------------------------------------------------------- /TriggerFinger/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/TriggerFinger/consts.py -------------------------------------------------------------------------------- /UC33e/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/UC33e/__init__.py -------------------------------------------------------------------------------- /UC33e/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/UC33e/config.py -------------------------------------------------------------------------------- /UC33e/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/UC33e/consts.py -------------------------------------------------------------------------------- /VCM600/MixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/VCM600/MixerComponent.py -------------------------------------------------------------------------------- /VCM600/TrackEQComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/VCM600/TrackEQComponent.py -------------------------------------------------------------------------------- /VCM600/TrackFilterComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/VCM600/TrackFilterComponent.py -------------------------------------------------------------------------------- /VCM600/TransportComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/VCM600/TransportComponent.py -------------------------------------------------------------------------------- /VCM600/VCM600.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/VCM600/VCM600.py -------------------------------------------------------------------------------- /VCM600/ViewTogglerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/VCM600/ViewTogglerComponent.py -------------------------------------------------------------------------------- /VCM600/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/VCM600/__init__.py -------------------------------------------------------------------------------- /ZERO8/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/ZERO8/__init__.py -------------------------------------------------------------------------------- /ZERO8/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/ZERO8/config.py -------------------------------------------------------------------------------- /ZERO8/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/ZERO8/consts.py -------------------------------------------------------------------------------- /_APC/APC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_APC/APC.py -------------------------------------------------------------------------------- /_APC/ControlElementUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_APC/ControlElementUtils.py -------------------------------------------------------------------------------- /_APC/DetailViewCntrlComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_APC/DetailViewCntrlComponent.py -------------------------------------------------------------------------------- /_APC/DeviceBankButtonElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_APC/DeviceBankButtonElement.py -------------------------------------------------------------------------------- /_APC/DeviceComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_APC/DeviceComponent.py -------------------------------------------------------------------------------- /_APC/MixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_APC/MixerComponent.py -------------------------------------------------------------------------------- /_APC/RingedEncoderElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_APC/RingedEncoderElement.py -------------------------------------------------------------------------------- /_APC/SessionComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_APC/SessionComponent.py -------------------------------------------------------------------------------- /_APC/SkinDefault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_APC/SkinDefault.py -------------------------------------------------------------------------------- /_APC/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_APC/__init__.py -------------------------------------------------------------------------------- /_Arturia/ArturiaControlSurface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Arturia/ArturiaControlSurface.py -------------------------------------------------------------------------------- /_Arturia/MixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Arturia/MixerComponent.py -------------------------------------------------------------------------------- /_Arturia/ScrollComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Arturia/ScrollComponent.py -------------------------------------------------------------------------------- /_Arturia/SessionComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Arturia/SessionComponent.py -------------------------------------------------------------------------------- /_Arturia/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Arturia/__init__.py -------------------------------------------------------------------------------- /_Axiom/Encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Axiom/Encoders.py -------------------------------------------------------------------------------- /_Axiom/Pads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Axiom/Pads.py -------------------------------------------------------------------------------- /_Axiom/Transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Axiom/Transport.py -------------------------------------------------------------------------------- /_Axiom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Axiom/__init__.py -------------------------------------------------------------------------------- /_Axiom/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Axiom/consts.py -------------------------------------------------------------------------------- /_Framework/BackgroundComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/BackgroundComponent.py -------------------------------------------------------------------------------- /_Framework/ButtonElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/ButtonElement.py -------------------------------------------------------------------------------- /_Framework/ButtonMatrixElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/ButtonMatrixElement.py -------------------------------------------------------------------------------- /_Framework/ButtonSliderElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/ButtonSliderElement.py -------------------------------------------------------------------------------- /_Framework/Capabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/Capabilities.py -------------------------------------------------------------------------------- /_Framework/ChannelStripComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/ChannelStripComponent.py -------------------------------------------------------------------------------- /_Framework/ClipCreator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/ClipCreator.py -------------------------------------------------------------------------------- /_Framework/ClipSlotComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/ClipSlotComponent.py -------------------------------------------------------------------------------- /_Framework/ComboElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/ComboElement.py -------------------------------------------------------------------------------- /_Framework/CompoundComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/CompoundComponent.py -------------------------------------------------------------------------------- /_Framework/CompoundElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/CompoundElement.py -------------------------------------------------------------------------------- /_Framework/Control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/Control.py -------------------------------------------------------------------------------- /_Framework/ControlElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/ControlElement.py -------------------------------------------------------------------------------- /_Framework/ControlSurface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/ControlSurface.py -------------------------------------------------------------------------------- /_Framework/ControlSurfaceComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/ControlSurfaceComponent.py -------------------------------------------------------------------------------- /_Framework/Debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/Debug.py -------------------------------------------------------------------------------- /_Framework/Defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/Defaults.py -------------------------------------------------------------------------------- /_Framework/Dependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/Dependency.py -------------------------------------------------------------------------------- /_Framework/DeviceBankRegistry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/DeviceBankRegistry.py -------------------------------------------------------------------------------- /_Framework/DeviceComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/DeviceComponent.py -------------------------------------------------------------------------------- /_Framework/Disconnectable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/Disconnectable.py -------------------------------------------------------------------------------- /_Framework/DisplayDataSource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/DisplayDataSource.py -------------------------------------------------------------------------------- /_Framework/DrumGroupComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/DrumGroupComponent.py -------------------------------------------------------------------------------- /_Framework/DrumRackComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/DrumRackComponent.py -------------------------------------------------------------------------------- /_Framework/EncoderElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/EncoderElement.py -------------------------------------------------------------------------------- /_Framework/InputControlElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/InputControlElement.py -------------------------------------------------------------------------------- /_Framework/Layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/Layer.py -------------------------------------------------------------------------------- /_Framework/LogicalDisplaySegment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/LogicalDisplaySegment.py -------------------------------------------------------------------------------- /_Framework/M4LInterfaceComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/M4LInterfaceComponent.py -------------------------------------------------------------------------------- /_Framework/MidiMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/MidiMap.py -------------------------------------------------------------------------------- /_Framework/MixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/MixerComponent.py -------------------------------------------------------------------------------- /_Framework/ModeSelectorComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/ModeSelectorComponent.py -------------------------------------------------------------------------------- /_Framework/ModesComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/ModesComponent.py -------------------------------------------------------------------------------- /_Framework/MomentaryModeObserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/MomentaryModeObserver.py -------------------------------------------------------------------------------- /_Framework/NotifyingControlElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/NotifyingControlElement.py -------------------------------------------------------------------------------- /_Framework/OptionalElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/OptionalElement.py -------------------------------------------------------------------------------- /_Framework/PhysicalDisplayElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/PhysicalDisplayElement.py -------------------------------------------------------------------------------- /_Framework/Profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/Profile.py -------------------------------------------------------------------------------- /_Framework/Proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/Proxy.py -------------------------------------------------------------------------------- /_Framework/Resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/Resource.py -------------------------------------------------------------------------------- /_Framework/SceneComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/SceneComponent.py -------------------------------------------------------------------------------- /_Framework/ScrollComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/ScrollComponent.py -------------------------------------------------------------------------------- /_Framework/SessionComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/SessionComponent.py -------------------------------------------------------------------------------- /_Framework/SessionZoomingComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/SessionZoomingComponent.py -------------------------------------------------------------------------------- /_Framework/Signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/Signal.py -------------------------------------------------------------------------------- /_Framework/Skin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/Skin.py -------------------------------------------------------------------------------- /_Framework/SlideComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/SlideComponent.py -------------------------------------------------------------------------------- /_Framework/SliderElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/SliderElement.py -------------------------------------------------------------------------------- /_Framework/SubjectSlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/SubjectSlot.py -------------------------------------------------------------------------------- /_Framework/SysexValueControl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/SysexValueControl.py -------------------------------------------------------------------------------- /_Framework/Task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/Task.py -------------------------------------------------------------------------------- /_Framework/ToggleComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/ToggleComponent.py -------------------------------------------------------------------------------- /_Framework/TrackArmState.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/TrackArmState.py -------------------------------------------------------------------------------- /_Framework/TransportComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/TransportComponent.py -------------------------------------------------------------------------------- /_Framework/Util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/Util.py -------------------------------------------------------------------------------- /_Framework/ViewControlComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/ViewControlComponent.py -------------------------------------------------------------------------------- /_Framework/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Framework/__init__.py -------------------------------------------------------------------------------- /_Generic/Devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Generic/Devices.py -------------------------------------------------------------------------------- /_Generic/GenericScript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Generic/GenericScript.py -------------------------------------------------------------------------------- /_Generic/SelectChanStripComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Generic/SelectChanStripComponent.py -------------------------------------------------------------------------------- /_Generic/SpecialMixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Generic/SpecialMixerComponent.py -------------------------------------------------------------------------------- /_Generic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Generic/__init__.py -------------------------------------------------------------------------------- /_Generic/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Generic/util.py -------------------------------------------------------------------------------- /_MPDMkIIBase/ControlElementUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_MPDMkIIBase/ControlElementUtils.py -------------------------------------------------------------------------------- /_MPDMkIIBase/MPDMkIIBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_MPDMkIIBase/MPDMkIIBase.py -------------------------------------------------------------------------------- /_MPDMkIIBase/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_MPDMkIIBase/__init__.py -------------------------------------------------------------------------------- /_MxDCore/LomTypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_MxDCore/LomTypes.py -------------------------------------------------------------------------------- /_MxDCore/LomUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_MxDCore/LomUtils.py -------------------------------------------------------------------------------- /_MxDCore/MxDCore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_MxDCore/MxDCore.py -------------------------------------------------------------------------------- /_MxDCore/MxDUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_MxDCore/MxDUtils.py -------------------------------------------------------------------------------- /_MxDCore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_MxDCore/__init__.py -------------------------------------------------------------------------------- /_Serato/PySCAClipControl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Serato/PySCAClipControl.py -------------------------------------------------------------------------------- /_Serato/Serato.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Serato/Serato.py -------------------------------------------------------------------------------- /_Serato/SpecialChanStripComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Serato/SpecialChanStripComponent.py -------------------------------------------------------------------------------- /_Serato/SpecialClipSlotComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Serato/SpecialClipSlotComponent.py -------------------------------------------------------------------------------- /_Serato/SpecialDeviceComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Serato/SpecialDeviceComponent.py -------------------------------------------------------------------------------- /_Serato/SpecialMixerComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Serato/SpecialMixerComponent.py -------------------------------------------------------------------------------- /_Serato/SpecialSceneComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Serato/SpecialSceneComponent.py -------------------------------------------------------------------------------- /_Serato/SpecialSessionComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Serato/SpecialSessionComponent.py -------------------------------------------------------------------------------- /_Serato/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Serato/__init__.py -------------------------------------------------------------------------------- /_Tools/ConfigParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Tools/ConfigParser.py -------------------------------------------------------------------------------- /_Tools/InstantMappings-HowTo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Tools/InstantMappings-HowTo.txt -------------------------------------------------------------------------------- /_Tools/UserConfiguration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Tools/UserConfiguration.txt -------------------------------------------------------------------------------- /_Tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Tools/__init__.py -------------------------------------------------------------------------------- /_Tools/copy_reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Tools/copy_reg.py -------------------------------------------------------------------------------- /_Tools/multipledispatch/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Tools/multipledispatch/__init__.pyc -------------------------------------------------------------------------------- /_Tools/multipledispatch/conflict.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Tools/multipledispatch/conflict.pyc -------------------------------------------------------------------------------- /_Tools/multipledispatch/core.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Tools/multipledispatch/core.pyc -------------------------------------------------------------------------------- /_Tools/multipledispatch/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Tools/multipledispatch/utils.pyc -------------------------------------------------------------------------------- /_Tools/re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Tools/re.py -------------------------------------------------------------------------------- /_Tools/simplejson/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Tools/simplejson/__init__.pyc -------------------------------------------------------------------------------- /_Tools/simplejson/compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Tools/simplejson/compat.pyc -------------------------------------------------------------------------------- /_Tools/simplejson/decoder.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Tools/simplejson/decoder.pyc -------------------------------------------------------------------------------- /_Tools/simplejson/encoder.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Tools/simplejson/encoder.pyc -------------------------------------------------------------------------------- /_Tools/simplejson/ordered_dict.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Tools/simplejson/ordered_dict.pyc -------------------------------------------------------------------------------- /_Tools/simplejson/scanner.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Tools/simplejson/scanner.pyc -------------------------------------------------------------------------------- /_Tools/simplejson/tool.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Tools/simplejson/tool.pyc -------------------------------------------------------------------------------- /_Tools/sre_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Tools/sre_compile.py -------------------------------------------------------------------------------- /_Tools/sre_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Tools/sre_constants.py -------------------------------------------------------------------------------- /_Tools/sre_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Tools/sre_parse.py -------------------------------------------------------------------------------- /_Tools/stubout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Tools/stubout.py -------------------------------------------------------------------------------- /_Tools/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_Tools/types.py -------------------------------------------------------------------------------- /_UserScript/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/_UserScript/__init__.py -------------------------------------------------------------------------------- /ableton/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/ableton/__init__.py -------------------------------------------------------------------------------- /ableton/v2/.DS_Store_failed_failed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ableton/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/ableton/v2/README.md -------------------------------------------------------------------------------- /ableton/v2/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/ableton/v2/__init__.pyc -------------------------------------------------------------------------------- /ableton/v2/base/.DS_Store_failed_failed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ableton/v2/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/ableton/v2/base/__init__.py -------------------------------------------------------------------------------- /ableton/v2/base/dependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/ableton/v2/base/dependency.py -------------------------------------------------------------------------------- /ableton/v2/base/disconnectable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/ableton/v2/base/disconnectable.py -------------------------------------------------------------------------------- /ableton/v2/base/gcutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/ableton/v2/base/gcutil.py -------------------------------------------------------------------------------- /ableton/v2/base/live_api_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/ableton/v2/base/live_api_utils.py -------------------------------------------------------------------------------- /ableton/v2/base/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/ableton/v2/base/proxy.py -------------------------------------------------------------------------------- /ableton/v2/base/signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/ableton/v2/base/signal.py -------------------------------------------------------------------------------- /ableton/v2/base/slot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/ableton/v2/base/slot.py -------------------------------------------------------------------------------- /ableton/v2/base/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/ableton/v2/base/task.py -------------------------------------------------------------------------------- /ableton/v2/base/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/ableton/v2/base/util.py -------------------------------------------------------------------------------- /ableton/v2/control_surface/.DS_Store_failed_failed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ableton/v2/control_surface/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/ableton/v2/control_surface/layer.py -------------------------------------------------------------------------------- /ableton/v2/control_surface/midi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/ableton/v2/control_surface/midi.py -------------------------------------------------------------------------------- /ableton/v2/control_surface/mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/ableton/v2/control_surface/mode.py -------------------------------------------------------------------------------- /ableton/v2/control_surface/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/ableton/v2/control_surface/profile.py -------------------------------------------------------------------------------- /ableton/v2/control_surface/skin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/ableton/v2/control_surface/skin.py -------------------------------------------------------------------------------- /microKONTROL/Preset.syx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/microKONTROL/Preset.syx -------------------------------------------------------------------------------- /microKONTROL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/microKONTROL/__init__.py -------------------------------------------------------------------------------- /microKONTROL/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/microKONTROL/config.py -------------------------------------------------------------------------------- /microKONTROL/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/microKONTROL/consts.py -------------------------------------------------------------------------------- /nanoKontrol/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc -------------------------------------------------------------------------------- /nanoKontrol/Encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/nanoKontrol/Encoders.py -------------------------------------------------------------------------------- /nanoKontrol/NanoKontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/nanoKontrol/NanoKontrol.py -------------------------------------------------------------------------------- /nanoKontrol/Pads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/nanoKontrol/Pads.py -------------------------------------------------------------------------------- /nanoKontrol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/nanoKontrol/README.md -------------------------------------------------------------------------------- /nanoKontrol/SliderSection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/nanoKontrol/SliderSection.py -------------------------------------------------------------------------------- /nanoKontrol/Transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/nanoKontrol/Transport.py -------------------------------------------------------------------------------- /nanoKontrol/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/nanoKontrol/__init__.py -------------------------------------------------------------------------------- /nanoKontrol/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/nanoKontrol/consts.py -------------------------------------------------------------------------------- /padKONTROL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/padKONTROL/__init__.py -------------------------------------------------------------------------------- /padKONTROL/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/padKONTROL/config.py -------------------------------------------------------------------------------- /padKONTROL/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/padKONTROL/consts.py -------------------------------------------------------------------------------- /pushbase/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/__init__.py -------------------------------------------------------------------------------- /pushbase/accent_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/accent_component.py -------------------------------------------------------------------------------- /pushbase/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/actions.py -------------------------------------------------------------------------------- /pushbase/auto_arm_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/auto_arm_component.py -------------------------------------------------------------------------------- /pushbase/automation_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/automation_component.py -------------------------------------------------------------------------------- /pushbase/banking_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/banking_util.py -------------------------------------------------------------------------------- /pushbase/browser_modes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/browser_modes.py -------------------------------------------------------------------------------- /pushbase/browser_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/browser_util.py -------------------------------------------------------------------------------- /pushbase/clip_control_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/clip_control_component.py -------------------------------------------------------------------------------- /pushbase/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/colors.py -------------------------------------------------------------------------------- /pushbase/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/consts.py -------------------------------------------------------------------------------- /pushbase/control_element_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/control_element_factory.py -------------------------------------------------------------------------------- /pushbase/decoration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/decoration.py -------------------------------------------------------------------------------- /pushbase/device_chain_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/device_chain_utils.py -------------------------------------------------------------------------------- /pushbase/device_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/device_component.py -------------------------------------------------------------------------------- /pushbase/device_parameter_bank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/device_parameter_bank.py -------------------------------------------------------------------------------- /pushbase/drum_group_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/drum_group_component.py -------------------------------------------------------------------------------- /pushbase/elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/elements.py -------------------------------------------------------------------------------- /pushbase/fixed_length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/fixed_length.py -------------------------------------------------------------------------------- /pushbase/grid_resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/grid_resolution.py -------------------------------------------------------------------------------- /pushbase/instrument_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/instrument_component.py -------------------------------------------------------------------------------- /pushbase/internal_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/internal_parameter.py -------------------------------------------------------------------------------- /pushbase/loop_selector_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/loop_selector_component.py -------------------------------------------------------------------------------- /pushbase/mapped_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/mapped_control.py -------------------------------------------------------------------------------- /pushbase/matrix_maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/matrix_maps.py -------------------------------------------------------------------------------- /pushbase/melodic_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/melodic_component.py -------------------------------------------------------------------------------- /pushbase/melodic_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/melodic_pattern.py -------------------------------------------------------------------------------- /pushbase/message_box_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/message_box_component.py -------------------------------------------------------------------------------- /pushbase/note_editor_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/note_editor_component.py -------------------------------------------------------------------------------- /pushbase/note_editor_paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/note_editor_paginator.py -------------------------------------------------------------------------------- /pushbase/note_repeat_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/note_repeat_component.py -------------------------------------------------------------------------------- /pushbase/note_settings_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/note_settings_component.py -------------------------------------------------------------------------------- /pushbase/pad_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/pad_control.py -------------------------------------------------------------------------------- /pushbase/parameter_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/parameter_provider.py -------------------------------------------------------------------------------- /pushbase/playhead_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/playhead_component.py -------------------------------------------------------------------------------- /pushbase/playhead_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/playhead_element.py -------------------------------------------------------------------------------- /pushbase/provider_device_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/provider_device_component.py -------------------------------------------------------------------------------- /pushbase/push_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/push_base.py -------------------------------------------------------------------------------- /pushbase/quantization_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/quantization_component.py -------------------------------------------------------------------------------- /pushbase/scrollable_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/scrollable_list.py -------------------------------------------------------------------------------- /pushbase/scrollable_list_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/scrollable_list_component.py -------------------------------------------------------------------------------- /pushbase/selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/selection.py -------------------------------------------------------------------------------- /pushbase/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/setting.py -------------------------------------------------------------------------------- /pushbase/simpler_decoration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/simpler_decoration.py -------------------------------------------------------------------------------- /pushbase/simpler_slice_nudging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/simpler_slice_nudging.py -------------------------------------------------------------------------------- /pushbase/skin_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/skin_default.py -------------------------------------------------------------------------------- /pushbase/sliced_simpler_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/sliced_simpler_component.py -------------------------------------------------------------------------------- /pushbase/special_mixer_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/special_mixer_component.py -------------------------------------------------------------------------------- /pushbase/special_session_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/special_session_component.py -------------------------------------------------------------------------------- /pushbase/step_seq_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/step_seq_component.py -------------------------------------------------------------------------------- /pushbase/sysex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/sysex.py -------------------------------------------------------------------------------- /pushbase/touch_encoder_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/touch_encoder_element.py -------------------------------------------------------------------------------- /pushbase/touch_strip_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/touch_strip_controller.py -------------------------------------------------------------------------------- /pushbase/touch_strip_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/touch_strip_element.py -------------------------------------------------------------------------------- /pushbase/track_frozen_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/track_frozen_mode.py -------------------------------------------------------------------------------- /pushbase/transport_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/transport_component.py -------------------------------------------------------------------------------- /pushbase/user_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/user_component.py -------------------------------------------------------------------------------- /pushbase/value_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluon/AbletonLive9_RemoteScripts/HEAD/pushbase/value_component.py --------------------------------------------------------------------------------