public class Main extends Application {
@Override
public void start( Stage stage ) throws Exception {
Parent root = FXMLLoader.load( getClass().getResource( "/fxml/main.fxml" ) );
Scene scene = new Scene( root );
stage.setTitle( "Main" );
stage.setScene( scene );
stage.show();
System.out.println( "x=" + stage.getX() + ", y=" + stage.getY() ); // <--
}
}
<?php echo( is_callable( 'imagecreatefromjpeg' ) ? 'Yes' : 'No' );
$res = mysql_query( "SELECT * FROM `таблица` ORDER BY `id` DESC" );
while ( ( $row = mysql_fetch_assoc( $res ) ) !== false ) {
// ...
}