[haXe] haXe 1.05 !

Nicolas Cannasse ncannasse at motion-twin.com
Thu Aug 17 09:04:16 CEST 2006


> Hi list,
> 
> I'm please to announce that haXe 1.05 is now available to download from
> http://haxe.org/download
> 
> New features :
>   - Flash9 support ! See http://haxe.org/tutos/flash9

Scott asked on the OSFlash list how do I deal with "private".

In AS3/Flash9, there are several kind of field accesses :
   public
   protected (= haxe private)
   internal
   private (no subclass access)

There is also some fields properties such as "const" or "final".

Most of them are not supported by haXe, which have a more simple model
of access rights. When generating Flash9 bytecode, all rights are set to
"public". This is the haXe philsophy to give you security at
compile-time and dynamicity at runtime.

Nicolas



More information about the Haxe mailing list