Calling a function after another function is called

698 Views Asked by At

I'm programming a controller for use with Ableton Live 8 using the Python-based API. In my code I use a method provided in the API to watch for changes in a property's value, and call a function whenever the value changes. My goal is to change the color of the clip when the value change is noticed.

I have my code completed, and it compiles without error. From Ableton's log:

742234 ms. RemoteScriptError: RuntimeError
742234 ms. RemoteScriptError: : 
742234 ms. RemoteScriptError: Changes cannot be triggered by notifications
742234 ms. RemoteScriptError: 

It appears this is the result of using the built-in notification system to make a change to the live set during notification. Triggering the actual change AFTER the listening function has finished executing should work. Is this possible using Python?

Edit for clarification:

currently we have

  1. value change noticed, function called
  2. function attempts to change the clips color (results in error)

we need

  1. listener notices value change, function called
  2. function finds the new color value
  3. function execution ends
  4. another function is called outside the listener's scope, and changes the clips color
2

There are 2 best solutions below

1
On

I did a lot in M4L and know this error by heart :) I'm afraid you can't do anything about that - to my noob eyes it looks like a built-in security mechanism so you can't loop (Something changed? Change it! Something changed...).

In M4L i used Javascript Tasks to separate the steps (Tasks forget nearly everything), something like

Observer -> Something changed

Create a Task that reacts

task.execute() or task.schedule(time)

Maybe the python threading module can achieve something similar? BTW, if you happen to understand anything about the _Framework-Tasks, let me know.

0
On

I was having the same issue trying to delete a track from a clip stop listener, then I found this thread and followed @user2323980 suggestion.
There seems to be a "_tasks" object on every Framework class (I found it throught log_message inside ClipSlotComponent and ControlSurface) that handles concurrency between tasks. And it's really simple to use it:

self._tasks.add(Task.run(func, args))

I found some uses of it on Push and MK2 scripts, those are good references.