Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(9) | Call(9) | Derive(0) | Import(0)
src/a/b/AbletonLive9_RemoteScripts-HEAD/Nocturn2/PlayingController.py AbletonLive9_RemoteScripts(Download)
if ((index >= 0) and (index < NUM_STRIPS)): if (index == 0): self.song().metronome = vel and True elif (index == 1): self.song().start_playing()
self.song().stop_playing() elif (index == 3): self.song().record_mode = vel and True elif (index == 4): self.song().overdub = vel and True elif (index == 5): self.song().punch_in = vel and True elif (index == 6): self.song().loop = vel and True
src/a/b/AbletonLive9_RemoteScripts-HEAD/Nocturn2/MixerController.py AbletonLive9_RemoteScripts(Download)
self._arm_enabled = (velocity > 0) elif (note == MASTER_BASE_NO+5): self.song().nudge_down = (velocity > 0) elif (note == MASTER_BASE_NO+6): self.song().nudge_up = (velocity > 0)
src/a/b/AbletonLive9_RemoteScripts-HEAD/Nocturn2/SceneController.py AbletonLive9_RemoteScripts(Download)
index -= 1 index = max(0,min(index,len(quant.values)-1)) self.song().clip_trigger_quantization = quant.values[index] self._quant_sel_count = 0 elif (cc_no == SCENE_BASE_CC+3):