JavaFX - Sudoku with CSS
For Applet mode, click on above image
First lets create a style sheet...
.titleText {
|
Similarly a button can be created by a combination of Rectangle and Text as shown below:
.buttonText {
|
Now we need to associate this style-sheet with the top level container of JavaFX - Scene.
var stylesheets = "{__DIR__}blue.css";
|
stylesheet and have assigned the URL of the stylesheet file. Now I bind this value to stylesheets attribute of Scene. This will associate the CSS file with this Scene. I have used bind so that I can update the associated stylesheet at runtime.
Now I will associate the style-class defined in style-sheet to the specified Node. For example, we can apply the titleText style-class with the title node as shown below.
var title = Text {
|
Similarly we can associate the button's rectangle attributes as shown below..
var defRect = Rectangle {
|




Nice can you build some demo about BlendMoes..
Posted by Farrukh Obaid on March 11, 2009 at 03:58 AM IST #
Thanks Farrukh. You may refer to "Effects Playground" sample - http://javafx.com/samples/EffectsPlayground/index.html. Click on "Open Image 2" to load the second image. Now select "Blend" option. It will show controls for different modes such as Multiply, Overlay, Difference etc. Hope this helps.
Posted by Rakesh Menon on March 11, 2009 at 03:18 PM IST #
@Farrukh I have posted a new blog on BlendMode - http://blogs.sun.com/rakeshmenonp/entry/javafx_blendmode_effect
Posted by Rakesh Menon on March 12, 2009 at 06:00 PM IST #
Hi Rakesh.
Do you know how can I refer to a relative image url into the css file?
Example:
public class MyClass extends Group{
id:"goBack";
var image:Image{}
...
init {
content = [
...
ImageView{ image:image; }
...
]
}
}
in the css:
...
#goBack.image {
url:url({__DIR__}/images/img.png)
}
...
thakyou for advanced
Posted by Antonio on May 19, 2009 at 08:24 PM IST #
@Antonio I haven't tried using image, so not sure if that will work. Need to try..
Posted by Rakesh Menon on June 11, 2009 at 03:15 PM IST #