Ken
Ken
  • 466
  • 1 231 378
JavaFX 21 Tutorial 13 - Event Handler
In this video, I'll demonstrate how to utilize an Event Handler in JavaFX 21 or newer, coupled with IntelliJ 2024.1, operating on Windows 11 x64.
Event Handlers and Interfaces - The EventHandler interface encompasses the handle method, designed for processing action events. This method, being abstract, necessitates overriding to properly respond to the event.
Переглядів: 93

Відео

JavaFX 21 Tutorial 12 - Tooltip
Переглядів 803 місяці тому
JavaFX Tooltip is like a little message box that shows up when you hover over something, like a button or an image, in a JavaFX program. It usually gives you extra info about that thing you're hovering over, to help you understand it better. You can change how it looks and behaves, like where it shows up or how long it stays visible. To make a tooltip in JavaFX, you usually connect it to the th...
JavaFX 21 Tutorial 11 - PasswordField
Переглядів 928 місяців тому
In this tutorial, I will show you how to use a PasswordField using JavaFX 21 or later with IntelliJ 2023.3 on Windows 11 x64. The PasswordField is a text input control that does not display the actual characters entered. It displays an echo character for each character entered. setText() method to set the actual text in a PasswordField. getText() method to get the actual text in a PasswordField...
JavaFX 21 Tutorial 10 - Slider
Переглядів 1028 місяців тому
Slider lets the user graphically select a value by sliding a knob within a bounded interval. #javafx #slider
JavaFX 21 Tutorial 9 - ListView
Переглядів 3948 місяців тому
In this tutorial, I will show you how to use a ListView using JavaFX 21 or later with IntelliJ 2023.2.3 on Windows 11 x64. The ListView performs basically the same function as a combo box, but it enables the user to choose a single value or multiple values. lvItems.getItems() Return an ObservableList containing the items to be shown to the user, or null if the items have previously been set to ...
JavaFX 21 Tutorial 8 - ComboBox
Переглядів 849 місяців тому
The ComboBox is also known as choice list or dropdown list that contains a list of items from which the user can choose. A combo box is preferred if the number of items does not exceed a certain limit. A choice box is useful only if you provide support for selecting between a few options. #javafx #combobox
JavaFX 21 Tutorial 7 - ChoiceBox
Переглядів 1739 місяців тому
In this tutorial, I will show you how to use a ChoiceBox using JavaFX 21 with IntelliJ 2023.2.4 on Windows 11 x64. The ChoiceBox is used for presenting the user with a relatively small set of predefined choices from which they may choose. The ObservableList is a collection that is capable of notifying UI controls when objects are added, updated (selected), and removed. In this example, it allow...
JavaFX 21 Tutorial 6 - RadioButton
Переглядів 2969 місяців тому
In this tutorial, I will show you how to use radio buttons using JavaFX 21 LTS with IntelliJ 2023.2.4 on Windows 11 x64. Radio Buttons enable the user to choose a single item from a group of choice. To group radio buttons, you need to create an object of ToggleGroup and set a radio button’s toggleGroup property to join the group as follows; ToggleGroup tgFruit = new ToggleGroup(); rbApple.setTo...
JavaFX 21 Tutorial 5 - CheckBox
Переглядів 1109 місяців тому
In this tutorial, I will show you how to use a CheckBox using JavaFX 21 LTS with IntelliJ 2023.2.3 on Windows 11 x64. CheckBox A CheckBox is used for the user to make a selection. The isSelected() method gets the value of the CheckBox selected. It indicates whether this CheckBox is checked. The getText() method gets the value of the CheckBox text or null. Note: I have updated my IntelliJ IDEA t...
JavaFX 21 Tutorial 4 - TextArea
Переглядів 21410 місяців тому
In this tutorial, I will show you how to use a TextArea using JavaFX 21 LTS with IntelliJ 2023.2.3 on Windows 11 x64. A TextArea enables the user to enter multiple lines of text. The setText() method sets the value of text. The appendText() method appends the value of text. This method appends some texts to the end of the current text. #javafx #textarea
JavaFX 21 Tutorial 3 - Button
Переглядів 11710 місяців тому
In this tutorial, I will show you how to use a Button using JavaFX 21 LTS with IntelliJ 2023.2.3 on Windows 11 x64. A button is a control that triggers an action event when clicked. JavaFX provides regular buttons, toggle buttons, check box buttons and radio buttons. #javafx21 #button
JavaFX 21 Tutorial 2 - Label
Переглядів 17210 місяців тому
In this tutorial, I will show you how to use a label using JavaFX 21 LTS with IntelliJ 2023.2.3 on Windows 11 x64. Label A Label displays text that is required to fit within a specific space. Note: I have updated my IntelliJ IDEA to 2023.2.3 on 14 October 2023. #javafx21 #label
JavaFX 21 Tutorial 1 - TextField
Переглядів 55610 місяців тому
In this tutorial, I will show you how to use a text file using JavaFX 21 LTS with IntelliJ 2023.2.2. TextField A text field can be used to accept or display a String value. The getText() method gets the value of the text field. The setText() method sets the value of the text field. Wrapper Class Wrapper classes are used to convert any data type into an object. As the primitive data types (e.g. ...
How to Install IntelliJ 2023.2.2 for JavaFX 21 LTS with JDK 21, Scene Builder 20 on Windows 11 x64
Переглядів 1,9 тис.10 місяців тому
In this tutorial, I will show you how to install IntelliJ IDEA 2023.2.2 for JavaFX 21 with JDK 21, JavaFX Scene Builder 20 on Windows 11 x64. You should download and install the following: - JDK 21 is available from www.oracle.com/java/technologies/javase-downloads.html - Open JavaFX (OpenJFX) 21 is available from gluonhq.com/products/javafx/ - Java Scene Builder 20 is available from gluonhq.co...
How To InstallJavaFX SceneBuilder 20.0.0 on Windows 11 x64
Переглядів 27810 місяців тому
This tutorial will show you how to download and upgrade to JavaFX SceneBuilder 20.0.0 on Windows 11 x64. You should download the following: - Open JavaFX SceneBuilder 20.0.0 is available from gluonhq.com/products/scene-builder/ The Installed directories is as following: C:\Users\Ken\AppData\Local\SceneBuilder Configure the latest version of SceneBuilder. In the Settings/Preferences dialog, sele...
How To Install IntelliJ 2023.2.2 for JavaFX 21 LTS on Windows 11 x64
Переглядів 26610 місяців тому
How To Install IntelliJ 2023.2.2 for JavaFX 21 LTS on Windows 11 x64
How To Install JavaFX SDK 21 and JMODs 21 on Windows 11 x64.
Переглядів 2,2 тис.10 місяців тому
How To Install JavaFX SDK 21 and JMODs 21 on Windows 11 x64.
How To Install Java Development Kit (JDK) 21 LTS on Windows x64 11
Переглядів 25010 місяців тому
How To Install Java Development Kit (JDK) 21 LTS on Windows x64 11
How To Install Apache NetBeans IDE 18 with JDK 20 on Windows 11 x64
Переглядів 1,2 тис.Рік тому
How To Install Apache NetBeans IDE 18 with JDK 20 on Windows 11 x64
How To Install Java Development Kit (JDK) 20.0.1 on Windows 11 x64
Переглядів 242Рік тому
How To Install Java Development Kit (JDK) 20.0.1 on Windows 11 x64
Deploy JavaFX 19 JAR, exe, msi Using Intellj 2022.3.2 on Windows 11 x64 (Full version)
Переглядів 2,9 тис.Рік тому
Deploy JavaFX 19 JAR, exe, msi Using Intellj 2022.3.2 on Windows 11 x64 (Full version)
How To Install NetBeans 17 with JDK 19, JavaFX 19 and Scene Builder 19 on Windows 11 x64 (2-2)
Переглядів 913Рік тому
How To Install NetBeans 17 with JDK 19, JavaFX 19 and Scene Builder 19 on Windows 11 x64 (2-2)
How To Install NetBeans 17 with JDK 19, JavaFX 19 and Scene Builder 19 on Windows 11 x64 (1-2)
Переглядів 7 тис.Рік тому
How To Install NetBeans 17 with JDK 19, JavaFX 19 and Scene Builder 19 on Windows 11 x64 (1-2)
How To Deploy a JavaFX 19 JAR with a MySQL using JDBC in IntelliJ 2022.3.2 on Windows 11 x64
Переглядів 1,1 тис.Рік тому
How To Deploy a JavaFX 19 JAR with a MySQL using JDBC in IntelliJ 2022.3.2 on Windows 11 x64
Deploy JavaFX 19 JAR, exe, msi Using Intellj 2022.3.2 on Windows 11 x64 (Full version)
Переглядів 629Рік тому
Deploy JavaFX 19 JAR, exe, msi Using Intellj 2022.3.2 on Windows 11 x64 (Full version)
How To Deploy an Executable JavaFX 19 JAR, exe, msi Using IntelliJ 2022.3.1 on Windows 11 x64 (3-3)
Переглядів 654Рік тому
How To Deploy an Executable JavaFX 19 JAR, exe, msi Using IntelliJ 2022.3.1 on Windows 11 x64 (3-3)
How To Deploy an Executable JavaFX 19 JAR, exe, msi Using IntelliJ 2022.3.1 on Windows 11 x64 (2-3)
Переглядів 2 тис.Рік тому
How To Deploy an Executable JavaFX 19 JAR, exe, msi Using IntelliJ 2022.3.1 on Windows 11 x64 (2-3)
How To Deploy an Executable JavaFX 19 JAR, exe, msi Using IntelliJ 2022.3.1 on Windows 11 x64 (1-3)
Переглядів 1,6 тис.Рік тому
How To Deploy an Executable JavaFX 19 JAR, exe, msi Using IntelliJ 2022.3.1 on Windows 11 x64 (1-3)
How to Get Started with JavaFX 8 or 19 on Windows 11 x64
Переглядів 127Рік тому
How to Get Started with JavaFX 8 or 19 on Windows 11 x64
How To Install JavaFX Scene Builder 19.0.0 on Windows 11 x64
Переглядів 987Рік тому
How To Install JavaFX Scene Builder 19.0.0 on Windows 11 x64

КОМЕНТАРІ

  • @joynour
    @joynour 8 днів тому

    thank you so much

  • @gerdsfargen6687
    @gerdsfargen6687 17 днів тому

    Kopun Kap ❤

  • @youssefayyar6011
    @youssefayyar6011 19 днів тому

    Hello, Thank you so much for your tutorials. Can you please help by providing a better solution to protect jar files from reverse engineering? Regards,

  • @Marcelciw
    @Marcelciw 24 дні тому

    thanks for help :D

  • @RanveerSinghMadan
    @RanveerSinghMadan 28 днів тому

    Ok nice

  • @zakyzaidan5990
    @zakyzaidan5990 29 днів тому

    it works!! Thank You

  • @MaxwellHauser
    @MaxwellHauser Місяць тому

    Wow what a strange bug. Thank you so much for this!

  • @russo588
    @russo588 Місяць тому

    Great video bro!

  • @VictorGutierrez886
    @VictorGutierrez886 Місяць тому

    Hello, my friend. Do you happen to know how to fix this error in IntelliJ IDEA that appears in the console? Java HotSpot(TM) 64-Bit Server VM warning: Sharing is only supported for boot loader classes because bootstrap classpath has been appended

  • @user-rq3kw1rw4m
    @user-rq3kw1rw4m Місяць тому

    the binary installers are just gone now

  • @Celtaphp
    @Celtaphp Місяць тому

    Esse vídeo me ajuda a 3 anos seguidos

  • @rdkutube
    @rdkutube Місяць тому

    Hey! Thank you for the video. installer exe builds and installs in c:\program files. When I run the app via the shortcut or from within the app install directory, nothing happens. The cursor spins and then exits. Is there a way to further debug why app is not running?

  • @ChristineZedday
    @ChristineZedday Місяць тому

    And after, what to do to use all those jmod stuff?

    • @Ken-oh5yh
      @Ken-oh5yh Місяць тому

      You can use it to create an executable jar file.

  • @anaelisa2982
    @anaelisa2982 Місяць тому

    Thank you very much! I thought I lost all my work 😭

  • @NULUSIOS
    @NULUSIOS Місяць тому

    JavaFX doesn't work. After putting it in there (v22.0.1), the program that needs it, still asks for javafx 22.0.1...

  • @jeffu3248
    @jeffu3248 Місяць тому

    Thank You! 😁

  • @PrinceRaj-wy7rh
    @PrinceRaj-wy7rh Місяць тому

    i had all these settings same as you but after that it is also not working

  • @sometimes1
    @sometimes1 Місяць тому

    YOU ARE A HERO, I'VE LOOKED EVERYWHERE AND THIS WAS THE ONLY SOLUTION THAT WORKED.

  • @affable.pebble
    @affable.pebble 2 місяці тому

    Thank you, very helpful!

  • @JakubJankowski-sf9ii
    @JakubJankowski-sf9ii 2 місяці тому

    bro yours videos are amazing, very simple and clear

  • @agente1269
    @agente1269 2 місяці тому

    GOD BLESS YOU👏👏👏👏

  • @copy7155
    @copy7155 2 місяці тому

    thanxs bro

  • @Stealthy_Sloth
    @Stealthy_Sloth 3 місяці тому

    2x speed with caption enabled.

  • @weak.
    @weak. 3 місяці тому

    THANK YOU SO MUCH!

  • @Crazy_moments_of_footbal-qz1qr
    @Crazy_moments_of_footbal-qz1qr 3 місяці тому

    great!!!!!!!!!

  • @kenjikl4225
    @kenjikl4225 3 місяці тому

    Thanks dude! All other tutorials for downloading JavaFX really aren't that clear as you.

  • @willywortel1452
    @willywortel1452 3 місяці тому

    Your code doesn't work man. I copied literately and it's full of error messages

  • @oleksandr3275
    @oleksandr3275 3 місяці тому

    Thank you ken 👍

  • @FiraFiki
    @FiraFiki 3 місяці тому

    Thanks! It works. Almost cracked my head open 😢

  • @jeaedlaviaa3583
    @jeaedlaviaa3583 4 місяці тому

    thank you so much it worksss

  • @Brickselot
    @Brickselot 4 місяці тому

    Quick and easy to follow

  • @professorfabiodepaula
    @professorfabiodepaula 5 місяців тому

    WOW!!!! It's working again. Than you friend.

  • @bsharazahlawi4198
    @bsharazahlawi4198 5 місяців тому

    thank you so much

  • @radicchiozambana5342
    @radicchiozambana5342 5 місяців тому

    I had trouble sleeping. Man o man if this helped. Thanks man!

    • @Strawberry_Htet
      @Strawberry_Htet 5 місяців тому

      I thought, it's only me...thank god...

  • @tayel1314
    @tayel1314 5 місяців тому

    i love you

  • @LebaneseNostalgia
    @LebaneseNostalgia 5 місяців тому

    Where can i download JavaFX 18?

    • @Ken-oh5yh
      @Ken-oh5yh 5 місяців тому

      You may use a long term support version of 17 or 21.

  • @mcwan7076
    @mcwan7076 5 місяців тому

    Thank you

  •  5 місяців тому

    Perfect! Thank you!

  • @uttamtidake600
    @uttamtidake600 5 місяців тому

    👑👑

  • @uttamtidake600
    @uttamtidake600 5 місяців тому

    Salute you man ❤

  • @ryansatriayudha
    @ryansatriayudha 5 місяців тому

    Thank you for making this video.

  • @xone9288
    @xone9288 5 місяців тому

    u saved my ass brother

  • @robertcygan
    @robertcygan 5 місяців тому

    Many many thanks bro

  • @ElFlaco117
    @ElFlaco117 5 місяців тому

    you know how to package the proyect im stuck on that

    • @Ken-oh5yh
      @Ken-oh5yh 5 місяців тому

      See ua-cam.com/video/l-mOnxOOkL8/v-deo.html

  • @yogeshdharya3857
    @yogeshdharya3857 5 місяців тому

    U got what it takes

  • @0m4r21o
    @0m4r21o 6 місяців тому

    Error: JavaFX runtime components are missing, and are required to run this application Edit: the problem was that my file name was not space free

  • @terryware2348
    @terryware2348 6 місяців тому

    why is the red x in the box?

  • @ngnhatthanh
    @ngnhatthanh 6 місяців тому

    I wonder why it needs to create App class and run jar file based on that instead of HelloApplication class, I tried using HelloApp and failed, please explain to me

    • @Ken-oh5yh
      @Ken-oh5yh 6 місяців тому

      When you run a Java or JavaFX application from the command line or outside of an IDE like IntelliJ, you need to specify which class contains the main method to execute.

    • @ngnhatthanh
      @ngnhatthanh 6 місяців тому

      so what about the main method in HelloApp class, I'm still wondering@@Ken-oh5yh

  • @kakatax1216
    @kakatax1216 6 місяців тому

    thanks, i haate xamp for doing that

  • @cake12455
    @cake12455 6 місяців тому

    thanks