I'm trying to use a knob to control the speed of the Multiball. Hence, in the onExpression x of the knob I have the following,
Code: Select all
setattribute (Multiball1,'speed', x*100);
Any help appreciated.
Code: Select all
setattribute (Multiball1,'speed', x*100);
Code: Select all
Multiball1.speed = x * 100;