Replicated COMP

Hi. I am trying to create a replicated comp that has buttons, sliders, etc. inside it. So far so good. But I can’t click on those buttons or sliders as only the master comp is interactive in the comp that holds the UI.

here’s an example, does this help?

gui_replicator_example.tox (2.8 KB)

1 Like

Yes, for some reason…my tries would not work yesterday. Thanks

Hi. Back to you. I am using SceneChanger for switching scenes and there is a weird behaviour and I don’t know what’s the cause. If I click inside the UI component on scene, scene2, scene3 etc it works. If I go out and try it in perform mode it works only one click if previously I pressed black. Can someone replicate the behaviour? Thanks
PPT1.13.toe (28.8 KB)

It was because your ui elements (Panel COMPs) were overlapping in /project1/exampleShow/ui, so clicks were not registered. I fixed it by setting the align parameter on the Children page to "Bottom to Top".

As a bonustip I set the display parameter of MasterGUI COMP to int(op("null1")[0]) == me.digits
This is a nice trick way to get rid of all the code in the Chop Exec DAT

PPT1.13-fix.toe (30.7 KB)

1 Like

OH man. Thanks a lot!