@@ -359,7 +359,7 @@ public void clipIt() throws IOException, InterruptedException {
359359 }
360360 }
361361 }
362- FXMLLoader fxmlLoader = new FXMLLoader (HelloApplication .class .getResource ("clipping-view.fxml" ));
362+ FXMLLoader fxmlLoader = new FXMLLoader (HelloApplication .class .getResource ("/ clipping-view.fxml" ));
363363 Scene scene = new Scene (fxmlLoader .load (), 600 , 400 );
364364 Stage stage = new Stage ();
365365 stage .setTitle ("ClippyFX Clipping" );
@@ -378,7 +378,7 @@ public void clipIt() throws IOException, InterruptedException {
378378 }
379379
380380 public void loadURLFile (String link ) throws IOException , URISyntaxException , InterruptedException {
381- FXMLLoader fxmlLoader = new FXMLLoader (HelloApplication .class .getResource ("compatablityator-view.fxml" ));
381+ FXMLLoader fxmlLoader = new FXMLLoader (HelloApplication .class .getResource ("/ compatablityator-view.fxml" ));
382382 Scene scene = new Scene (fxmlLoader .load (), 600 , 400 );
383383 Stage stage = new Stage ();
384384 stage .setTitle ("ClippyFX: Advanced video loader" );
@@ -391,7 +391,7 @@ public void loadURLFile(String link) throws IOException, URISyntaxException, Int
391391 }
392392
393393 public void loadFileDirect (File file ) throws IOException , InterruptedException , URISyntaxException {
394- FXMLLoader fxmlLoader = new FXMLLoader (HelloApplication .class .getResource ("compatablityator-view.fxml" ));
394+ FXMLLoader fxmlLoader = new FXMLLoader (HelloApplication .class .getResource ("/ compatablityator-view.fxml" ));
395395 Scene scene = new Scene (fxmlLoader .load (), 600 , 400 );
396396 Stage stage = new Stage ();
397397 stage .setTitle ("ClippyFX: Advanced video loader" );
@@ -413,7 +413,7 @@ public void loadFile(MouseEvent mouseEvent) throws IOException, InterruptedExcep
413413 }
414414 }
415415 }
416- FXMLLoader fxmlLoader = new FXMLLoader (HelloApplication .class .getResource ("compatablityator-view.fxml" ));
416+ FXMLLoader fxmlLoader = new FXMLLoader (HelloApplication .class .getResource ("/ compatablityator-view.fxml" ));
417417 Scene scene = new Scene (fxmlLoader .load (), 600 , 400 );
418418 Stage stage = new Stage ();
419419 stage .setTitle ("ClippyFX: Advanced video loader" );
@@ -439,7 +439,7 @@ public void loadYoutube(String direct) throws IOException {
439439 }
440440 }
441441 }
442- FXMLLoader fxmlLoader = new FXMLLoader (HelloApplication .class .getResource ("youtube-view.fxml" ));
442+ FXMLLoader fxmlLoader = new FXMLLoader (HelloApplication .class .getResource ("/ youtube-view.fxml" ));
443443 Scene scene = new Scene (fxmlLoader .load (), 600 , 213 );
444444 Stage stage = new Stage ();
445445 stage .setTitle ("ClippyFX: Youtube video loader" );
0 commit comments