Is anyone here using FDT for AS development? It is a pretty cool Eclipse plugin, but it apparently complains with a lot of errors when I load AnimationPackage.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
yea, I'll release a new version of AP in the next days that'll fix the issues with the FDT parser. Mostly it's missing semicolons as far as I can see. ( ;
Best,
Alex
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Is anyone here using FDT for AS development? It is a pretty cool Eclipse plugin, but it apparently complains with a lot of errors when I load AnimationPackage.
yea, I'll release a new version of AP in the next days that'll fix the issues with the FDT parser. Mostly it's missing semicolons as far as I can see. ( ;
Best,
Alex
Add semicolons and update all the shortened if else statemnets as follows:
/*Taken from RoundRectangle.as; method- initShape*/
-->This statment should be changed....
cornerRadii == null ? this.cornerRadii = RoundRectangle.cornerRadii_def : this.cornerRadii = cornerRadii;
--> To this...
this.cornerRadii = cornerRadii == null ? RoundRectangle.cornerRadii_def : cornerRadii;
..hope this helps. It's addressed on FDT forums....
Zameer
You'll find this fixed in the newest BETA release of 1.07. Check it out and let me know if you've feedback.
http://www.alex-uhlmann.de/flash/animationpackage/unstable/
Best,
Alex