WEBVTT 1 00:00:00.220 --> 00:00:02.114 In this demo I'm going to create a new 2 00:00:02.115 --> 00:00:05.008 JavaFX application project. 3 00:00:05.227 --> 00:00:08.002 I don't need to close down the adventure project 4 00:00:08.003 --> 00:00:09.118 which I had open previously 5 00:00:09.119 --> 00:00:11.113 because in NetBeans you can have more than one 6 00:00:11.114 --> 00:00:13.113 project open at the same time 7 00:00:13.225 --> 00:00:16.223 but I will collapse it down so that we just see 8 00:00:16.226 --> 00:00:18.224 the title of the project there. 9 00:00:21.000 --> 00:00:23.229 So lets create the new project, I choose File 10 00:00:24.005 --> 00:00:27.222 New Project, and that shows a list of possible project 11 00:00:27.224 --> 00:00:30.003 types and there are many different types of projects 12 00:00:30.006 --> 00:00:32.111 that you can create with NetBeans. 13 00:00:33.009 --> 00:00:35.115 I'm going to choose JavaFX 14 00:00:35.117 --> 00:00:37.228 and JavaFX application 15 00:00:38.112 --> 00:00:39.115 and click next. 16 00:00:42.119 --> 00:00:45.000 Now I need to provide a name for the project 17 00:00:45.002 --> 00:00:48.003 and a location, I'll leave the location as the default 18 00:00:48.116 --> 00:00:52.112 and I'll name the project HelloDemo 19 00:00:52.225 --> 00:00:55.228 and I do want it to create an application class 20 00:00:56.113 --> 00:00:58.008 so now I click finish 21 00:00:59.006 --> 00:01:01.223 and the project will be created. 22 00:01:04.222 --> 00:01:08.001 Note that the project icon has an FX symbol on it 23 00:01:08.002 --> 00:01:11.000 to indicate that this is a JavaFX project. 24 00:01:11.228 --> 00:01:13.117 NetBeans has created a project 25 00:01:13.118 --> 00:01:16.220 with a single source package HelloDemo 26 00:01:17.002 --> 00:01:20.229 which contains a single class HelloDemo dot java 27 00:01:21.221 --> 00:01:23.229 we'll look at the code for the HelloDemo class 28 00:01:24.000 --> 00:01:25.005 in the next demo.