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 156069 - Project support for FX property files
Summary: Project support for FX property files
Status: RESOLVED INVALID
Alias: None
Product: javafx
Classification: Unclassified
Component: Unsupported (show other bugs)
Version: 6.x
Hardware: All All
: P4 blocker (vote)
Assignee: Anton Chechel
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-12-25 13:35 UTC by Alexandr Scherbatiy
Modified: 2011-10-21 08:06 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Alexandr Scherbatiy 2008-12-25 13:35:57 UTC
Add support for the fx property files: *.fxproperties

For Example:
------------  Main_sp.fxproperties  ---------
"Text"="áéíúó"
---------------------------------------------


------------  Main.fx  ---------
import javafx.stage.*;
import javafx.scene.*;
import javafx.scene.text.*;

import java.util.Locale;

Locale.setDefault(new Locale("sp"));

Stage {
    title: "Localization Text"
    width: 200
    height: 200
    scene: Scene {
        content: Text {
            x:  50 y: 50
            font: Font {  size: 24 }
            content: "áéíúó"
        }
    }
}
---------------------------------------------
Comment 2 Adam Sotona 2009-01-06 14:33:23 UTC
Any unknown extension is opened as plain text file in NetBeans so it is editable.
Comment 3 Alexandr Scherbatiy 2009-01-19 11:06:26 UTC
Add a template for the JavaFX property files to the JavaFX File Types. 
Comment 4 David Strupl 2011-10-19 12:05:35 UTC
Cleaning bugzilla categories ....
Comment 5 Anton Chechel 2011-10-21 08:06:51 UTC
JavaFX 1.3 is no longer supported.