Search found 238 matches

by wiffbi
Fri Nov 23, 2018 8:00 am
Forum: Ableton Live
Topic: doepfer pocket dial - instant mapping?
Replies: 20
Views: 8634

Re: doepfer pocket dial - instant mapping?

Hi Daniel, sorry for my late reply. I do not have the PocketDial anymore and haven’t tested it with newer versions of Live (e.g. 10). As the _framework-Classes in between Live 8 und 9 even needed some adjustments, I guess this will be the same with Live 10. If the control surface script fails, there...
by wiffbi
Tue Apr 19, 2016 6:54 pm
Forum: Tips & Tricks
Topic: Control selected track \w keyboard shortcuts
Replies: 489
Views: 301060

Re: Control selected track \w keyboard shortcuts

Sorry for my late reply. Love … good question. I still use it, but sadly only occasionally as spare time for making music is rare currently (family, kids, work …) Are you having issues? It’s still working for me … Let me know your version of Live and what’s the problem. I’ll try to help. Regarding f...
by wiffbi
Thu Feb 19, 2015 9:05 am
Forum: Tips & Tricks
Topic: Control selected track \w keyboard shortcuts
Replies: 489
Views: 301060

Re: Control selected track \w keyboard shortcuts

From the top of my head, it should work like this: the tuple midi_bytes has 3 elements, all of them 1 byte. You need to encode 4 types of information in those 3 bytes. MIDI channel, what type of midi message (Note On, Note Off, CC, etc.) and note/cc number and value. Note/CC number is one byte (0-12...
by wiffbi
Tue Feb 17, 2015 6:34 pm
Forum: Tips & Tricks
Topic: Control selected track \w keyboard shortcuts
Replies: 489
Views: 301060

Re: Control selected track \w keyboard shortcuts

@re:dream: good question! I have some basic code fragments working, but it is still a lot of work – and I have the feeling spare time for such projects is getting less and less. There are some stressful weeks at work ahead, but hopefully after that I have more time to finish this thing! Fingers cros...
by wiffbi
Mon Feb 09, 2015 9:03 am
Forum: Tips & Tricks
Topic: Control selected track \w keyboard shortcuts
Replies: 489
Views: 301060

Re: Control selected track \w keyboard shortcuts

Hi comod, I am sorry, currently STC does not support MIDI-feedback – STC started out as a helper to get my Kimidi keyboard-shortcuts working and did not need Value-Takeover or MIDI-feedback or clip colors. STC2 is still a lot of work, but it will be based on Live’s _Framework-Classes, which add Valu...
by wiffbi
Thu Oct 23, 2014 8:36 am
Forum: Tips & Tricks
Topic: Control selected track \w keyboard shortcuts
Replies: 489
Views: 301060

Re: Control selected track \w keyboard shortcuts

Yes, there is a file inside the Selected_Track_Control-folder called MIDI.py (NOT .pyc!). In there on line 8 it says: DEFAULT_CHANNEL = 0 Change that to the channel number you want, starting with 0 – so the 16 MIDI-channels go from 0 to 15 (that is programmers counting vs. the "natural" 1-...
by wiffbi
Tue Oct 21, 2014 9:04 pm
Forum: Ableton Live
Topic: Mapping more than one track's send controls
Replies: 5
Views: 1798

Re: Mapping more than one track's send controls

Which note-values do you want the sends to listen to? I can make a custom version of STC for you.
by wiffbi
Mon Oct 20, 2014 9:38 pm
Forum: Ableton Live
Topic: Mapping more than one track's send controls
Replies: 5
Views: 1798

Re: Mapping more than one track's send controls

Sorry, this is a shameless self promotion: I wrote a Control Surface Script, that does exactly that (amongst other things). It is called Selected Track Control and can be found here (don’t be confused about the keyboard shortcut thing, that is an addition to the basic Control Surface): http://stc.wi...
by wiffbi
Tue Sep 16, 2014 8:33 pm
Forum: Ableton Live
Topic: Live 9:Record Arm ignores exclusive setting for MIDI mapping
Replies: 5
Views: 1779

Re: Live 9:Record Arm ignores exclusive setting for MIDI mapping

That’s strange: when I manually MIDI-map my keyboard to different tracks’ arm-buttons (e.g. note C1 arms track 1, note D1 arms track 2, etc.), it does respect the exclusive-setting – the cool thing even is, when I have arm exclusive on and press multiple MIDI keys at the same time, multiple tracks a...
by wiffbi
Tue Aug 12, 2014 7:50 pm
Forum: Tips & Tricks
Topic: Control selected track \w keyboard shortcuts
Replies: 489
Views: 301060

Re: Control selected track \w keyboard shortcuts

@apcut: hm, I downloaded the github-version (sometimes my local dev-version has something in it, that makes it work and I forgot to commit to github) and tested it on Live 9.1.4 - it works! Can you have a look at Live’s Log-File? Maybe there is something in there: On Mac: /Users/<username>/Library/P...
by wiffbi
Tue Aug 12, 2014 7:46 am
Forum: Tips & Tricks
Topic: Control selected track \w keyboard shortcuts
Replies: 489
Views: 301060

Re: Control selected track \w keyboard shortcuts

@SKDJ: thanks for the kind feedback. Regarding MIDI feedback: STC indeed does not support it currently. This is simply because it started life as a (computer) keyboard shortcut tool, which did not need MIDI feedback. I have a few code sketches for a rewrite using the _Framework-Classes, which will b...
by wiffbi
Fri Jul 25, 2014 11:25 am
Forum: Tips & Tricks
Topic: Control selected track \w keyboard shortcuts
Replies: 489
Views: 301060

Re: Control selected track \w keyboard shortcuts

@apcut: I updated the git-repository to version 1.3.6 and added toggle arrangement_overdub with Note(117) toggle session_automation_record with Note(118) I have not updated the official page yet because of lack of time, sorry! Download here: https://github.com/wiffbi/Selected_Track_Control/archive/m...
by wiffbi
Tue Jul 22, 2014 10:30 am
Forum: Tips & Tricks
Topic: Control selected track \w keyboard shortcuts
Replies: 489
Views: 301060

Re: Control selected track \w keyboard shortcuts

@apcut: sorry, that I get back to you so late: yes, should be possible. I will look into it hopefully in the next days.
by wiffbi
Tue Jul 15, 2014 6:16 pm
Forum: Tips & Tricks
Topic: Control selected track \w keyboard shortcuts
Replies: 489
Views: 301060

Re: Control selected track \w keyboard shortcuts

@apcut: you need to edit settings.py (NOT .pyc) – in there are all settings for STC and everything can be deactivated there. In settings.py from line 193 to line 450 are all settings. You can deactivate a setting by adding a # as the first character in line. What you want is line 383 to 392, everyth...
by wiffbi
Thu Jun 26, 2014 10:00 am
Forum: Ableton Live
Topic: Python script to trigger a specific clip slot
Replies: 8
Views: 3945

Re: Python script to trigger a specific clip slot

You can loop through all tracks like this (beware, untested): for track in song().tracks: if track.name == "foobar": # do something with list of clipslots track.clipslots[0].fire() Regarding number of tracks in the mixer: you do not need to know as you can iterate over the list of tracks w...