Hi all,
Is it possible to use a function from one of the components within the plugin from another component but with different arguments simultaneously?
For example, I want to use a function from this plugin to move 3 faders simultaneously. I put function move_fader() to the first component and in the second I do this
Code
return function ()
local commands = {'page 1.201 at 100 fade 1','page 1.202 at 70 fade 1','page 1.203 at 50 fade 1'}
for _,command in pairs(commands) do
move_fader(command)
coroutine.yield(0)
end
end
But it moves faders one by one, but not all together.
Is there a way to make them move together?