witchi
witchi

Reputation: 401

Debug JavaFx with a tool like FireBug

Is there a tool like FireBug (hover and get information about HTML and CSS) to see what is active in a JavaFX scene?

Upvotes: 4

Views: 1129

Answers (1)

Armali
Armali

Reputation: 19395

Try Scenic View – James_D

Scenic View is a JavaFX application designed to make it simple to understand the current state of your application scenegraph, and to also easily manipulate properties of the scenegraph without having to keep editing your code. This lets you find bugs, and get things pixel perfect without having to do the compile-check-compile dance.

Upvotes: 2

Related Questions