I am running fill.fx from Tutorial lesson 1, got compilation errors, the code is from:
http://inkspb.russia.sun.com/FXDocs/Concepts/Franca/ui/overview/fill.fx
The errors about Color cannot find.
So I added import Color, it works, looks like the Color class needs to be added in the import section
C:\>javafx-sdk1.1\bin\javafxc fill.fx
.\Color.fx:3: Color is already defined in this compilation unit
import javafx.scene.paint.Color;
^
fill.fx:9: cannot find symbol
symbol : variable DARKSLATEGRAY
location: class Color
def stroke = Color.DARKSLATEGRAY;
^
fill.fx:10: cannot find symbol
symbol : variable CADETBLUE
location: class Color
def fill = Color.CADETBLUE;
^
fill.fx:11: cannot find symbol
symbol : variable GOLD
location: class Color
def alterfill = Color.GOLD;
^
fill.fx:17: cannot find symbol
symbol : variable LINEN
location: class Color
fill: Color.LINEN;
^
fill.fx:89: cannot find symbol
symbol : variable WHITE
location: class Color
Stop {offset: 0.0 color: Color.WHITE},
^
fill.fx:90: cannot find symbol
symbol : variable YELLOW
location: class Color
Stop {offset: 0.5 color: Color.YELLOW},
^
fill.fx:91: cannot find symbol
symbol : variable GOLD
location: class Color
Stop {offset: 1.0 color: Color.GOLD}
^
fill.fx:110: cannot find symbol
symbol : variable WHITE
location: class Color
Stop {offset: 0.0 color: Color.WHITE},
^
fill.fx:111: cannot find symbol
symbol : variable YELLOW
location: class Color
Stop {offset: 0.5 color: Color.YELLOW},
^
fill.fx:112: cannot find symbol
symbol : variable GOLD
location: class Color
Stop {offset: 1.0 color: Color.GOLD}
^
fill.fx:131: cannot find symbol
symbol : variable WHITE
location: class Color
Stop {offset: 0.0 color: Color.WHITE},
^
fill.fx:132: cannot find symbol
symbol : variable YELLOW
location: class Color
Stop {offset: 0.5 color: Color.YELLOW},
^
fill.fx:133: cannot find symbol
symbol : variable GOLD
location: class Color
Stop {offset: 1.0 color: Color.GOLD}
^
14 errors
After I import javafx.scene.paint.Color; The code is compiled fine and runs OK.
The code is attached.
http://inkspb.russia.sun.com/FXDocs/Concepts/Franca/ui/overview/fill.fx
The errors about Color cannot find.
So I added import Color, it works, looks like the Color class needs to be added in the import section
C:\>javafx-sdk1.1\bin\javafxc fill.fx
.\Color.fx:3: Color is already defined in this compilation unit
import javafx.scene.paint.Color;
^
fill.fx:9: cannot find symbol
symbol : variable DARKSLATEGRAY
location: class Color
def stroke = Color.DARKSLATEGRAY;
^
fill.fx:10: cannot find symbol
symbol : variable CADETBLUE
location: class Color
def fill = Color.CADETBLUE;
^
fill.fx:11: cannot find symbol
symbol : variable GOLD
location: class Color
def alterfill = Color.GOLD;
^
fill.fx:17: cannot find symbol
symbol : variable LINEN
location: class Color
fill: Color.LINEN;
^
fill.fx:89: cannot find symbol
symbol : variable WHITE
location: class Color
Stop {offset: 0.0 color: Color.WHITE},
^
fill.fx:90: cannot find symbol
symbol : variable YELLOW
location: class Color
Stop {offset: 0.5 color: Color.YELLOW},
^
fill.fx:91: cannot find symbol
symbol : variable GOLD
location: class Color
Stop {offset: 1.0 color: Color.GOLD}
^
fill.fx:110: cannot find symbol
symbol : variable WHITE
location: class Color
Stop {offset: 0.0 color: Color.WHITE},
^
fill.fx:111: cannot find symbol
symbol : variable YELLOW
location: class Color
Stop {offset: 0.5 color: Color.YELLOW},
^
fill.fx:112: cannot find symbol
symbol : variable GOLD
location: class Color
Stop {offset: 1.0 color: Color.GOLD}
^
fill.fx:131: cannot find symbol
symbol : variable WHITE
location: class Color
Stop {offset: 0.0 color: Color.WHITE},
^
fill.fx:132: cannot find symbol
symbol : variable YELLOW
location: class Color
Stop {offset: 0.5 color: Color.YELLOW},
^
fill.fx:133: cannot find symbol
symbol : variable GOLD
location: class Color
Stop {offset: 1.0 color: Color.GOLD}
^
14 errors
After I import javafx.scene.paint.Color; The code is compiled fine and runs OK.
The code is attached.