Change the child position within VBox

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By mustafamax

You place three buttons in a Vbox container,
I want to change the position of each button using the code,
For example the number one button is number two and so on

1 Like
:bust_in_silhouette: Reply From: Dlean Jeans

Use move_child:

move_child($Button1, 1) # move the first button to the second position

Thank you this is the perfect solution

mustafamax | 2019-06-14 18:55

1 Like