Hi,
I'm trying to create an array of independent buttons arranged horizontally in the window. Each button should be a unique object which reacts independently to mouse hovers and clicks.
My composition creates an array of buttons but doing so stops the mouse-over hover effect. In my mind I was assuming that each iteration of the BuildList node would create an independent button object which points to the same window.
Is my composition wrong or am I incorrectly trying to apply a procedural / OOP paradigm to a visual programming tool?
Comments
With a Build List node, all
With a
Build List
node, all the buttons have the same ID since they're created by a singleMake Action Button
node within the loop.We are planning for a new way to iterate that will assign a unique ID to every layer inside the iterator, but we don't yet have a timeline on when that'll be available.
In the meantime, you can use multiple
Make Action Button
nodes andArrange Layers in Column
.button-array.vuo
Thanks Jean Marie
Thanks Jean Marie