> > > In the tutorial documentation for the stack panes it says, “Components > with a higher z-index (position within the stack pane) are painted on top of > components with a lower z-index.” Is there a simple way to get and set the > z position of elements inside a stack pane outside of the order in which > they are painted? >
You can use Container.indexOf(Component) to find a child component's z-order, and you can use Container.move(int,int) to move a component within a StackPane. Cheers, -T
