The Artima Developer Community
Sponsored Link

Java Buzz Forum
New JavaFX Script Build Posted To OpenJFX

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Weiqi Gao

Posts: 1808
Nickname: weiqigao
Registered: Jun, 2003

Weiqi Gao is a Java programmer.
New JavaFX Script Build Posted To OpenJFX Posted: May 31, 2007 10:24 AM
Reply to this message Reply

This post originated from an RSS feed registered with Java Buzz by Weiqi Gao.
Original Post: New JavaFX Script Build Posted To OpenJFX
Feed Title: Weiqi Gao's Weblog
Feed URL: http://www.weiqigao.com/blog/rss.xml
Feed Description: Sharing My Experience...
Latest Java Buzz Posts
Latest Java Buzz Posts by Weiqi Gao
Latest Posts From Weiqi Gao's Weblog

Advertisement

Christopher Oliver:

We just posted a new build of JFX which contains the following fixes  
and features:


UI -

1) Shape Morphing
   - Added class javafx.ui.canvas.Morph

This provides binary shape morphing. To use it assign an initial and  
terminal Shape to its start and end attributes respectively. Then  
animate its morph attribute between 0 and 1.

Morph is a Shape and can be used like any other Shape.

Here's a simple JFXPad example:

import javafx.ui.*;
import javafx.ui.canvas.*;
import javafx.ui.filter.*;

Morph {

     morph: bind [0,.01..1] dur 2000

     fill: blue

     start: Rect {
         x: 10
         y: 10
         width: 460
         height: 140
     }

     end: Circle {cx: 200, cy: 200, radius: 100}

}


2) JavaFXPad
  - Added a dialog to add additional directories or jar files to the  
source path for JavaFXPad to search for dependent classes
  - Added rudimentary support for searching in the source editor

3) Mouse Wheel support in Canvas
Swing components (Widgets) embedded in a Canvas now receive mouse  
wheel events.

4) Baseline alignment of Text
It's now possible to align Text at its baseline, by means of its  
verticalAlignment attribute, e.g

Text {
      content: "Blah"
      verticalAlignment: BASELINE
}

Interpreter -

1) bind is now only allowed in initialization contexts
2) Fixed array assignment problem reported on openjfx forum
3) Fixed bug with while condition of dur expression reported on  
openjfx user list

JSR 223 -

1) Fixed problems reported on openjfx user list

Read: New JavaFX Script Build Posted To OpenJFX

Topic: Train Wreck Previous Topic   Next Topic Topic: Links for 2007-05-23 [del.icio.us]

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use