Posts about Haxe

Create JSFL using Haxe

Haxe, JSFL

JSFL If you write a lot of JSFL scripts, it could be useful to have good code-completion. FlashDevelop has great Haxe support, and Haxe can compile to Javascript. JSFL is Javascript, so we can simply conclude you can create JSFL with Haxe out of the box, and have code completion on it.

Read more

Haxe Macros: Code completion for everything

Haxe

haxe This post is about Haxe 3, providing us smarter code-completion. I dislike doing things manually. We are using a computer, so it should help us. I’d like to get warnings when I make mistakes or point to things that are removed.
In this post we create a class that gives autocompletion automagically based on files on disk, using Haxe macro scripting. This gives us development power, less error-prone code and small javascript output.

Read more