We are about to switch to a new forum software. Until then we have removed the registration on this forum.
I am working with cp5 and I made a group called g1, what is the difference between: cp5.addSlider("s1").moveTo(g1); and cp5.addSlider("s1").setGroup(g1); ? Thanks!
Answers
Hi,
setGroup()
is the original method to move controllers from one group to another. Over timemoveTo()
was added to automate certain procedures based on the parameters passed on to the method. the preferred method call to move a controller to another group ismoveTo()
. for more details see the source code of the Controller class.