i've spent about 15 combined hours trying to figure out how to:
1.create a GUI in a format that i want (like this: https://imgur.com/a/xVeFC0L)
2.have the GUI open when i start the script
currently i have used IntellJ's GUI form builder thing to get the GUI to look like this: https://imgur.com/a/tt0HL3E and https://imgur.com/a/LWiLL8E but the code looks like this: https://imgur.com/a/TLOlkva
References I have used:
Creating GUI: IntellJ's GUI form builder, Eclipse with the windowbuilder plugin, and jvider
Tutorials:
(some of them are for other bot clients)
Open Source Scripts:
https://github.com/ColPowell/OSBotScripting/tree/master/ChocolateBuyer/src/nezz/org/chocolatebuyer
https://bitbucket.org/Fluffee/ (you can see it if you look for it, and i know it's using another bot client)
https://github.com/apaec/aio-herblore/tree/master/src/uk/co/ramyun/herblore (doesn't have a GUI but has a UI)
Questions i would like answered:
1. Is there NO GUI builder that allows me to drag and drop elements (like JButton, JList, JTextField, etc.) onto the the application window AND IT STAYS WHERE I PUT IT (meaning i don't have to hard code the exact position of every single element i put into the GUI)
2. Assuming i should still be using IntellJ's GUI form builder, why is there no code about how i customized it in the form onto the output code file
3. How do i get the GUI to open in onStart
4. Why do ALL of the GUI tutorials i find on this site and youtube only deal with a simple fucking button that NOBODY WOULD EVER USE ANYWHERE or some extremely specific case and not an in depth explanation of how to use most if not all of the different elements you can put in a GUI
I've made 3 scripts that work very well that i would not like to show the source code since they all use methods i would not like to reveal