davd211 opened a new issue, #7375:
URL: https://github.com/apache/netbeans/issues/7375
### Apache NetBeans version
Apache NetBeans 21
### What happened
estoy intentando que me funcione javafx.
### Language / Project Type / NetBeans Component
_No response_
### How to reproduce
/*
* Click
nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change
this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Main.java to edit
this template
*/
package javafx;
import static javafx.application.Application.launch;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
/**
*
* @author David.P
*/
public class Javafx {
public static void main(String[] args)
{
// TODO code application logic here
launch(args);
}
public void start(Stage stage) throws Exception
{
Parent root = FXMLLoader.load(getClass().getResource("FXML.fxml"));
Scene scene = new Scene(root);
stage.setScene(scene);
stage.show();
}
}
este es el codigo que me han dado para ejecutarlo y me tendri aque saltar
una ventanita, tambien tengo instalado scenebuilder
### Did this work correctly in an earlier version?
No / Don't know
### Operating System
windows
### JDK
21
### Apache NetBeans packaging
Apache NetBeans provided installer
### Anything else
[messages.log](https://github.com/apache/netbeans/files/15293083/messages.log)
este es el mensaje de log


### Are you willing to submit a pull request?
Yes
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists