Flare is an ActionScript library for creating visualizations that run in the Adobe Flash Player. From basic charts and graphs to complex interactive graphics, the toolkit supports data management, visual encoding, animation, and interaction techniques.
When I'm trying to compile flare demos, with flex 4, there are many issues in these files:
src\flare\util\Strings.as
src\flare\util\Maths.as
src\flare\vis\data\NodeSprite.as
src\flare\vis\operator\layout\Layout.as
All these issues has the same type:
Empty statement found where block of code expected. Did you type ';' accidentally?
[compc]
[compc] for (; i>0 && quantiles[i-1] == x; --i);
[compc] ^
I've fixed it in mine local working copy by replacing ";" with "{}". So please fix it in the trunk
P.S.: Project was built with free flex SDK
When I'm trying to compile flare demos, with flex 4, there are many issues in these files: src\flare\util\Strings.as src\flare\util\Maths.as src\flare\vis\data\NodeSprite.as src\flare\vis\operator\layout\Layout.as All these issues has the same type: Empty statement found where block of code expected. Did you type ';' accidentally? [compc] [compc] for (; i>0 && quantiles[i-1] == x; --i); [compc] ^
I've fixed it in mine local working copy by replacing ";" with "{}". So please fix it in the trunk P.S.: Project was built with free flex SDK