This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 189393

Summary: Change FXZ/FXD files template to 1.3
Product: javafx Reporter: Alexandr Scherbatiy <sunflower>
Component: UnsupportedAssignee: Andrew Korostelev <akorostelev>
Status: RESOLVED FIXED    
Severity: normal    
Priority: P2    
Version: 6.x   
Hardware: PC   
OS: Windows XP   
Issue Type: DEFECT Exception Reporter:

Description Alexandr Scherbatiy 2010-08-11 11:57:31 UTC
- Create an FXD file:
---------------------------------------
/*
 * Empty FXD file.
 */
//@version 1.0

Group {
    content: [
        // enter your stuff here
    ]
}
---------------------------------------

The old format is used.

The new format should be:
http://java.sun.com/javafx/1.3/docs/fxdspec/
---------------------------------------
/*
 * Empty FXD file.
 */
//@version 1.3   

FXD {
    content: [
        // enter your stuff here
   ]
}
---------------------------------------