Leave a random comment down below, or else the KZbin algorithm wins ⭐️Time Stamps⭐️ (00:00:00) intro ☕ (00:00:33) install & setup (Eclipse) 🌘 (00:08:14) install & setup (IntelliJ) 💡 (00:12:40) Stages 🎭 (00:25:47) Scenes + drawing stuff 🌄 (00:40:22) install Scene Builder 🛠️ (00:49:53) event handling using Scene Builder 🎪 (00:57:42) CSS styling 🎨 (01:07:27) switch scenes 💞 (01:15:20) communication between controllers 📣 (01:21:49) logout/exit button 🚪 (01:30:36) ImageView 🖼️ (01:37:12) TextField 💬 (01:43:51) CheckBox ✔️ (01:50:15) RadioButtons 🔘 (01:56:02) DatePicker 📅 (02:00:32) ColorPicker 🖌️ (02:03:47) ChoiceBox 🔽 (02:10:02) Slider 🌡️ (02:16:34) ProgressBar 🔋 (02:27:23) Spinner 🔄 (02:33:43) ListView 🧾 (02:39:16) TreeView 🌳 (02:49:17) MenuBar 🧰 (02:56:24) FlowPane 🌊 (02:59:00) KeyEvent ⌨️ (03:05:07) animations 🎬 (03:14:31) MediaView 🎞️ (03:24:34) WebView + building a web browser 🌐 (03:42:22) Mp3 music player project 🎵
@vishalratna27033 жыл бұрын
Ok
@vishalratna27033 жыл бұрын
Please tell how can I setup java sdk for vs code
@mouhamadoulaminegueye61373 жыл бұрын
No, i won't comment !
@bhavikprajapati26143 жыл бұрын
I can't run program of javafx in eclipse. I tried it 10 times but it's not working. Please help me..
@bunso5213 жыл бұрын
Nice
@habismuhammed20212 жыл бұрын
Btw, if anyone gets stuck. Most answers are there in the comments and how to do them are located in the replies to those comments.
@ArthurMartins-jw8fq3 жыл бұрын
Really important update, if you are using javaSE-16 you NEED to add the javaFX library under the MODULE-PATH instead of under the class-path.
@00Xcar003 жыл бұрын
THANK YOU! I could not figure out why mine wasn't working but this fixed it.
@johncho123 жыл бұрын
YESSS thanks so much!!
@dangerbirb49813 жыл бұрын
God bless you, my son. It is also needed for JavaSE-17.
@luniacllama83733 жыл бұрын
OMG THANK YOU
@luniacllama83733 жыл бұрын
@@dangerbirb4981 YESS
@miroslavfalcmann59673 жыл бұрын
This is absolutely perfect Bro! Simple, clear and quick explanation. Thank you for that. I found that video just on time I have my university project!
@AnhTran-pv4ho3 жыл бұрын
The setup was driving me crazy; then I remembered you had a series about JavaFx. Worked like a charm. Man, you were so good. Hope you come back making these videos someday.
@ChmielinskiMariusz3 жыл бұрын
I'm not in the middle of your course yet but I can say it loudly - you've done really great job, Bro! Thanks a lot!
@Panzer03 жыл бұрын
Scene Builder setup for IntelliJ starts at 46:48.
@mb-techs202 жыл бұрын
how to comment like what you did "46:48"?
@Panzer02 жыл бұрын
@@mb-techs20 You just did it lol
@CadenKoehl3 жыл бұрын
Let's just take a second to appreciate that the video length is 420 😂
@oo--77143 жыл бұрын
@Nico Quincy shut up bot
@batkhulegbazarragchaa50583 жыл бұрын
nice
@alooyeg3 жыл бұрын
nice
@madden81lm3 жыл бұрын
Nice
@YouCantGetBrokeByGiving3 жыл бұрын
Yeah, it is a lot of video :))
@myfuzzyanimals673 жыл бұрын
You are amazing. This is the best fx tutorial on KZbin!!
@gentworm23773 жыл бұрын
YESSS I have been waiting for this for a long time Thanks!
@bhavikprajapati26143 жыл бұрын
I can't run program of javafx in eclipse. I tried it 10 times but it's not working. Please help me..
@shubhamjapkar59503 жыл бұрын
@@bhavikprajapati2614 use intellij id
@ryanadams91583 жыл бұрын
You are a legend dude, was hoping you had a JavaFx course like you had for Swing 🙌
@marckhycs3192 жыл бұрын
I'm so happy to see people still learning JavaFX even though most people on the internet say that JavaFX is not worth learning. Thank you for this wonderful tutorial.
@nilsdruon19342 жыл бұрын
eh i have to learn it for school lol.
@gurnoorsingh97933 жыл бұрын
I am learning java, I have completed your full java course, and now I am here to learn gui of java.
@farhanfaraan13 жыл бұрын
kahan se learn kia full java course
@gurnoorsingh97933 жыл бұрын
@@farhanfaraan1 bro code ka hi hai
@jgone48563 жыл бұрын
Yes! I've been looking for an fx tutorial like this. Thank you
@szkolka003 жыл бұрын
It's amazing how we can have all this knowledge for free.
@AndiBauIT3 жыл бұрын
True
@ssalem71102 жыл бұрын
No time is wasted in this channel. Most KZbin tutorials these days have become waste of time from people who don't even know the subjects well. Not you Brother! Hope you keep it up and don't don't take the quality for granted. 👍
@masihnajafi50553 жыл бұрын
bro, I had so many particular questions and I didn't realize all the answers could be gathered together like this.
@revolutionaryfrog2 жыл бұрын
THANK YOU SO MUCH. I legit couldn't find out how to change my colors background or anything from any other guide. This is hands down the best tutorial I have seen and will share this vid with all my fellow amateur programmers.
@thedev51263 жыл бұрын
If someone has a problem of not showing drop-down menu in 53:26 (by that I mean that you have manually type the "application.Controller") it might be, because you were copy-pasting the code from previous tutorials like me- your FXML file is outside of package with main method (outside of "application" package) and the first line in your start method looks like this: Parent root = FXMLLoader.load(getClass().getResource("/Main.fxml")); You have to change the location of FXML file (in eclipse) to be in the same package as "Main" class and change the line I pasted to this one (or just delete the forward slash) Parent root = FXMLLoader.load(getClass().getResource("Main.fxml")); Now SceneBuilder should work fine
@RenanInfEB3 жыл бұрын
Gentleman you're a life saver, a beacon of hope for my poor desperate soul. Thank you very much! Be safe.
@tristanmoller94982 жыл бұрын
You have no idea how much I smiled, after seeing you have a tutorial on JavaFX. Thanks man!
@arun61063 жыл бұрын
The perfect course for JavaFX has just landed 😃 Great work, everything is very well explained!
@nottsly5900 Жыл бұрын
saved my life, clutched my assignment because of this.
@Echoece3 жыл бұрын
This tutorial is gold, really amazing for learning from scratch
@MarkBelain3 жыл бұрын
I love how the captions refer to everything you’re saying as [music].
@herrderr3663 жыл бұрын
i love how you explain the Code. Its exact and understable for beginners! Greeting from Germany :)
@XanthiumIndustries2 жыл бұрын
😄
@siebenzwei872 жыл бұрын
Same
@ivangessler984710 ай бұрын
Bro, you are my favorite! Thank you for Java Swing and Java FX!
@davidokeke5339 Жыл бұрын
1.05M subscribers , woot! woot! you deserve it bro
@TheNuffHD3 жыл бұрын
I have a project at my university that demands JavaFX. This comes a week before the JavaFX part of the project starts! Finally an updated and good video on javaFX.
@bhavikprajapati26143 жыл бұрын
I can't run program of javafx in eclipse. I tried it 10 times but it's not working. Please help me..
@altoclef49893 жыл бұрын
@@bhavikprajapati2614 hey bhavik, I can see if I can try to help! What error is your console showing when you try to run the project?
@miningape3 жыл бұрын
Same here, I fuckin hate java but this is a really nice tutorial... Tbh the teachers don't even know the difference between java and JavaScript so maybe I should just do whatever I want 🤔
@ivangessler984710 ай бұрын
People like you deserve a special little cloud in the heavens, bro! Thank you!
@MrMakkarone11 ай бұрын
His voice is so beautiful, that the auto subtitles saying [music] all the time
@polatsaryerli30712 жыл бұрын
thank you bro this saved my life i couldn't survive this term without your videos bro
@vanshgandhi16352 жыл бұрын
Bro, this was really helpful. Couldn't complete my project without this. Liked and Subscribed.
@AEINTech3 жыл бұрын
why did not I see this video before 😭😭. Man you are great, keep making videos please 👌🏻👌🏻
@adeqtz83852 жыл бұрын
BRO. You are actually a living legend. I haven't had such a great experience in any other java or programming tutorial video. I cannot thank you enough. ❤❤❤
@monotone42752 жыл бұрын
My guy, you are an absolute legend.
@theundescribable16432 жыл бұрын
Just completed the course! Had a lot of fun learning bro! Thanks a lot!
@SelvanesanKedrick18 күн бұрын
ur the goat bro. all those online paid courses are not even as good as yours.🔥🔥🔥
@chetantailor36203 жыл бұрын
Loved the way you teach and distinguish every point.
@SzpokUnderGround2 жыл бұрын
I love your tutorials. All is easy to understand. Simple and clear 👍
@Hxloiwnl3 жыл бұрын
You have saved me in my midterm
@betahunter3 жыл бұрын
For any people having trouble loading the image into the image object, write it like this instead: "file:icon-png", no sure how excatly, but found the solution on stack overflow.
@TheMaarten043 жыл бұрын
I did that but the icon still doesn't want to show up (I have no errors)
@betahunter3 жыл бұрын
@@TheMaarten04 Is your image in a directory or in a package? This only counts if the image is in a package. And try all the possible paths, like root content path, or content path or absolute path. You can copy these paths directly by right-clicking on the image under the projects files from your IDE and choose the "copy path" option or something named likewise.
@TheMaarten043 жыл бұрын
@@betahunter it's in the same package as my class
@betahunter3 жыл бұрын
@@TheMaarten04 Okay, then I think your only option is to try out the different path names and see which is working. Remeber the "file:pathname" must not be sperated with space, just let it be connected.
@TheMaarten043 жыл бұрын
@@betahunter thanks, hope it will work
@antoiner21219 ай бұрын
You just helped me to pass my bachelor degree. Thank you so much :)
@adheesh2secondsago6303 жыл бұрын
Lmao most of the time the generated captions recognised his voice as "[MUSIC]" Just showing how nice he sounds
@tinystar30292 жыл бұрын
saved me with an assignment I was struggling with. Thank you!!
@colek899011 ай бұрын
much thanks my brother. surely no amount of money can repay this knowledge you have generously shared.
@ItachiUchiha-nx2sw2 жыл бұрын
You are the MVP of code world.
@codeinfinite29883 жыл бұрын
Great Stuff bro. Keep it up ✌
@jennamartineau46199 ай бұрын
great video ! I listen to your video for each of my university course. You do such a great job. Thanks
@maxpershin37352 жыл бұрын
Thank you for your excellent work! This one was easy to watch and interesting to do along. Thank you one more time :)
@tyranzero2 жыл бұрын
Saving my college project Bro Code thanks for all of your video's dear sir
@MantisShrimp802 жыл бұрын
Excellent tutorial,! Many thanks for educating us programming enthusiasts, and wish you all the best in all your endeavors.
@carrieriangela4522 жыл бұрын
AMAZING COURSE!!!! Thx so much for the valuable content and the great spirit :)
@munirali84853 жыл бұрын
Love it gonna keep doing a little every day
@guilhermeramos89933 жыл бұрын
Dude thank you so much for these tutorials ur a lifesaver
@absirmulugeta7747 Жыл бұрын
Bro, I appreciate all your videos. Thank you for generously sharing such valuable courses for free. May you be blessed by God. Thank you very much.
@estebanqqpena14173 жыл бұрын
Bro, you just saved my university semester !!
@cudzuka3 жыл бұрын
these courses are so good that i have to watch every single one of them
@mario9820103 жыл бұрын
Thank you very much, It covers a lot of arguments with simplicity and clarity.
@hannescolt42733 жыл бұрын
Thanks for a great tutorial bro! Helped me and my classmates!
@iamsinghankit Жыл бұрын
Awesome content, Bro! Good Job
@nitrostation_gaming46513 жыл бұрын
You are the best Bro! 😎. Keep up the good work.
@emmanuartmoz8 ай бұрын
THANK YOU FOR THE COURSE, DID WILL HELP ME FOR SCHOOL.......(FORM AFRICA)
@harshaabeyvickramaa3 жыл бұрын
Simple and clear explanations. Thank you for the effort ❤️
@EsperG23 жыл бұрын
this was way too well made. liked, commented, and subscreebaed
@lucasf.v.n.4197 Жыл бұрын
watched this and the data structure and algorithms playlist; thanks for your content bro;
@RiadhFelhi3 жыл бұрын
thank you very much .I finished the course in on month for one hour per day.now I am learning how to make database because I need it for my work...
@Sh_ahmadi3 жыл бұрын
Thank you for the great things you put here online for free!
@MaximSushkin3 жыл бұрын
Pretty cool. Thanks a lot for the course
@zerosonesus10 ай бұрын
I have just completed this one. I seriously recommend it!
@saimrudula21403 жыл бұрын
you are amazing... you cleared all my doubts in one video
@panagiotiskougioumtzidis91143 жыл бұрын
All of your videos are excellent!!!
@ИгорьЛамонов-ч6х2 жыл бұрын
Я плохо понимаю английский. Но даже я смог научится с помощью данного урока. Спасибо) UPD Про прошествию месяца, до сих пор пользуюсь этим материалом как методичкой
@DePaulo66997 ай бұрын
Are you good or you needed to go on war for Putin?
@LehitLisu3 ай бұрын
@@DePaulo6699 since he hasn't responded yet, he must've died in svo :)
@Maheshyadav-xy6mu2 жыл бұрын
I figured out something that might help. In the new version of eclipse, we put the User Library(JavaFX) in the modulepath, not the classpath.
@abcfuture57792 жыл бұрын
thanks man
@raz9902 Жыл бұрын
been stuck there for a while, I truly appreciate your help man.
@kurdyga Жыл бұрын
Damn, hope ur life gonna be long and happy bro
@kayalenchen3 жыл бұрын
i love the way you say hierarchical
@triliner2543 жыл бұрын
Something to note for yall. When in the "Run Configurations", make sure the Main class is "application.Main". It will give you an error otherwise.
@justarandomguy1541 Жыл бұрын
thank you
@SkandaT3 жыл бұрын
Very god course, bro i wanted to make games with java now i'm one step closer. thx, ur a legend.
@johnescamargo38642 жыл бұрын
What a content! Congrats for the spectacular video.
@shofiqul00233 жыл бұрын
I was going to search javafx tutorial and this pops up in my suggestion :D
@ubermensch5472 Жыл бұрын
Thanks, Bro. You're better than my college lecturer.
@krishjaiswal96493 жыл бұрын
Great tutorials bruh...Really impressed.
@VasilisChatzikostas2 жыл бұрын
I have a project for university and you my friend are saving me. Thank you!
@prashanthhj73483 жыл бұрын
Learning a lot on JavaFX. Thanks
@Alexander007A3 жыл бұрын
Love you brother ❣️❣️❣️ keep helping like this.
@SuperIronicTBH Жыл бұрын
Great tutorial!
@meeknkosi3 жыл бұрын
beating the youtube algo ! oh one more thing , thanks for this
@linsspinho13 жыл бұрын
First you added a user library then you added a module command, very redundant, this people from gluon are trying to destroy JAVAFX, or getting paid by google for that, in the other hand you are one of the bests. It motivate!! Thanks!
@danielmardim58663 жыл бұрын
Without further ado... Superstar Code KZbinr
@ErrorNotFound-rv1ql3 жыл бұрын
It is so helpful for beginners thank you so much man !
@parthsachan11303 жыл бұрын
He is not a man, he is a God. Thank You.
@nomemeshere2533 жыл бұрын
1:31:08 File Explorer Goes This PC-> Desktop-> NUCLEAR LAUNCH CODES-> imports -> shrek, this had me dying 😂
@scrooge66033 жыл бұрын
shrek :D
@A.J.Interactive3 жыл бұрын
this course is super awesome! although I do wish I got some more in-depth explanation for some things, other than that, awesome job bro!
@yourlinuxguy Жыл бұрын
For In-depth explanations always use the official documentations.
@cookie-xf5wi3 жыл бұрын
Your explanation is very easy to understand.
@michaelanwachuks9597 Жыл бұрын
Thank you for this great tutorial...you are doing well!!
@shawntco2 жыл бұрын
Been using this to learn JavaFX. Plenty of good information to get me going.
@typingcat3 жыл бұрын
I know Eclipse is free but look at that sad dark theme UI. The icons are probably the same as light theme, the drop down triangle is black when it should be white, and in the bottom panel section, unselected tab have black caption so they are illegible. The main menu and the scroll bars are bright, the toolbar's vertical separators on the right is white. It looks as if someone hastily changed some background colours of light them to grey.
@Loknitro Жыл бұрын
I finished an basic system because of this in three days, thanks a lot. I also got to experience why people don't like Java too much, there's soooo much to type. I still like Java tough.
@danielnhoato8674 Жыл бұрын
thank you so much for this. It saved me for a class.
@theultimateamazing3722 Жыл бұрын
This video is amazing... kudos to bro!
@wurstdog28792 жыл бұрын
omg you saved my life god bless you
@thesoftwareproject57982 жыл бұрын
fantastic javafx tutorial.
@Kasas903 жыл бұрын
Bro Code deserves max respect for this. Let's win the algo-boss and slap a comment!