Hey,
if you like you can disable the box by changing one simple line in our script. But this will stop Live from following touchAble’s scene/track offset.
open the touchAbleCallbacks.py
on mac you will find the file inside the Live Application bundle:
/Applications/Ableton Live 11 Trial.app/Contents/App-Resources/MIDI Remote Scripts/touchAble/touchAbleCallbacks.py
on win it is located here:
\ProgramData\Ableton\Live x.x\Resources\MIDI Remote Scripts\touchAbleCallbacks.py
go to line 206 or search for “selectionCB(self, msg):”
and add return below the function definition, like this:
def selectionCB(self, msg):
return
self.c_instance.set_session_highlight(msg[2], msg[3], msg[4], msg[5], 0) # Zerodebug Change
#self._session_ring.set_offsets(msg[2], msg[3], width=msg[4], height=msg[5]) # SVH Change #