I ported a simple AIR app from AS3 to Haxe, but even the basic OpenFL/Starling stack does not compile. I’ve got all the latest versions of all the libs, Haxe 3.4.4, FD 5.3, AIR 26.
These are the errors I get when I simply open the .hxproj in FD and build it:
Replicating this bug
Steps to replicate:
- Update all your libs “haxelib run openfl setup”
- Download the zip from github
- Open the hxproj in FlashDevelop
- Hit compile
Errors
openfl._internal.renderer.RenderSession has no field maskManager
openfl._internal.renderer.RenderSession has no field cairo
OpenFL is designed to be built from the Lime command-line tools, so it is much more than a “haxe build.hxml” step (which the normal FlashDevelop template might use), since we generate icons, embed SWF assets, copy and rename assets, precompile and compile binaries and other steps needed for all the platform targets.
Here’s how to build a basic sample
openfl create project MyNewProject
cd MyNewProject
openfl test flash
Our blank project template includes a FlashDevelop project file, which you should be able to open and use for building on top of the blank slate
1 Like
Thanks to your help in my other thread, I managed to get OpenFL compiling. My project is available on github in case anyone else has a similar problem…