i have 4 widgets and the one in the center will be visible and the others will not, when the one in the center is clicked the others will open, it is for a 3d widget, how can i organize it in this format? I tried to put a vertical box in the middle of the horizontal box but it changes the sizes of horizontal widgets
Hey @riukuh!
Yeah, you don’t want to put a vertical box inside of the horizontal box here, because that would make the horizontal box the parent.
That being said, a vertical box and a horizontal box are the right move, you just need to have them as siblings, not parent/child, in the hierarchy!
Alternatively, you could use a gridbox! Using 3 rows and 5 columns, like so:
(Empty) (empty) (circle) (empty) (empty)
(empty) (empty) (empty) (empty) (empty)
(Circle) (Empty) (Circle) (Empty) (Circle)
You can customize the size of the grid squares, so you can make the circles the correct size while making the two empty columns and the empty middle row be spaced evenly!
thanks, It worked!
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.