#sticky
1 messages · Page 1 of 1 (latest)
<@&987246487241105418> please have a look, thanks.
While you are waiting for getting help, here are some tips to improve your experience:
If nobody is calling back, that usually means that your question was not well asked and hence nobody feels confident enough answering. Try to use your time to elaborate, provide details, context, more code, examples and maybe some screenshots. With enough info, someone knows the answer for sure.
Don't forget to close your thread using the command </help-thread close:1027500463647621170> when your question has been answered, thanks.
Here is an AI assisted attempt to answer your question 🤖. Maybe it helps! In any case, a human is on the way 👍. To continue talking to the AI, you can use </chatgpt:1108714622413963314>.
he bottom of the visible area, not the bottom of the window. To make the AnchorPane stick to the bottom of the window even when scrolling, you can use a combination of an outer VBox and an inner AnchorPane.
Here's an example of how you can achieve this in FXML:
<VBox xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1">
<!-- Your other content here -->
<AnchorPane VBox.vgrow="ALWAYS">
<!-- Your AnchorPane content here -->
</AnchorPane>
</VBox>
In this example, we wrap your existing content inside a VBox and set its vgrow property to ALWAYS. This ensures that it will take up any available vertical space.
Inside the VBox, we place the AnchorPane and set its constraints to anchor to all sides (top, right, left) with a fixed height. The VBox.vgrow="ALWAYS" ensures that the AnchorPane will expand vertically to fill any remaining space in the VBox.
With this setup, your AnchorPane will stick to the bottom of the window regardless of scrolling.
nonsense
nvm my attempt was screwed to begin with
figured it out