Haxe is an open source, multiplatform language that allows developers to target Flash, JavaScript, NekoVM, C++ and PHP using the same syntax. Experimental support for C# and Java is included in the latest Haxe versions.
5
votes
2answers
750 views
Would Haxe work for creating libraries?
I was thinking of using Haxe for it's cross-language ability, but wasn't sure if it was the best for this task. I'm going to write a generic library that should be able to be used in the target ...
77
votes
11answers
9k views
Is Haxe worth learning? [closed]
For people out there using HaXe, what makes it useful for you? Reading the website it looks very promising. Does it provide significant portability?
What are some real world and perhaps under ...
22
votes
4answers
3k views
Haxe in the field
I had a fresh look at haxe again recently and realized that I had overlooked some of its elegance before. But I guess it lacks some visibility among the developers still.
So my question is, does ...
5
votes
8answers
2k views
Web “frameworks” for haXe to deploy in a PHP environment?
Lately I've been taking a look at haXe, to build an application to be deployed to Apache running PHP. Well, while it looks like it might suit my needs (deploying to PHP, but not using an awful ...
8
votes
4answers
1k views
Haxe for javascript without global namespace pollution?
This question only applies to Haxe version < 2.10
I've known about haxe for a while, but never really played with it until yesterday. Being curious, I decided to port showdown.js, a javascript ...
3
votes
3answers
621 views
FlashDevelop, Haxe import CreateJS?
I just started trying out Haxe to make a web-app, and I would like to use CreateJS, which has a Haxe extern lib thingy. I'm using FlashDevelop as my IDE.
So I created a new Haxe JS project in ...
24
votes
5answers
6k views
Actionscript 3 vs haXe: Which to chose for new Flash project?
I am in the planning stages of a new Flash game project and was wondering which language would be better to use? I already have a strong understanding of Actionscript 3, and have not worked with haXe ...
10
votes
6answers
5k views
actionscript development on mac
I know of FlashDevelop for windows but how about developing actionscript or haxe on a mac? besides flex plugin for eclipse, flex builder and FDT is there anny good IDE out there for actionscript ...
2
votes
2answers
412 views
FlashDevelop — Specify an HXML file?
[a continuation of this question]
In order to embed resources in a SWF file, I have to add lines to my HXML file. However, since I'm using FlashDevelop, I don't know where to find that. Where should ...
1
vote
3answers
416 views
Duplicate image with Haxe
My goal is to make a wide map using only one square image.
Using actionscript 3 the solution is to simply make new Bitmap from the Loader:
var loader:Loader = new Loader();
loader.load(new ...
0
votes
0answers
119 views
Import Haxe modules into a node.js script
Using node.js and Haxe, is there any way to write a function that generates a node.js modules from a Haxe file, and then returns the generated module? I'm started writing node.js modules using Haxe, ...
0
votes
1answer
324 views
createjs + HaXe -> Uncaught ReferenceError: createjs is not defined
After a successfull compile of: http://nickalie.com/posts/67 , when I try to see it in the browser, I get a Uncaught ReferenceError: createjs is not defined right here (on the resulting compiled ...
3
votes
1answer
1k views
2
votes
2answers
307 views
Flashdevelop + haxe — repeated “An I/O error has occured” errors
I'm getting small dialog boxes that pop up saying I/O Error occurred. What causes this, and how should I fix this?
Edit: what happens is that after i run my flash game, FlashDevelop will try to ...
1
vote
1answer
73 views
Conditional compilation inside a method in Haxe
In the Haxe programming language, is it possible to detect the target language inside a method definition, as shown here?
class Test {
static function main() {
trace("Hello World !");
...
1
vote
3answers
1k views
HaXe — Embed files like in ActionScript?
In ActionScript, you can do something like this:
[Embed(source = "src/myfile.xml", mimeType = "application/octet-stream")]
private var xml : Class;
and it will embed your file to be used in code. ...
1
vote
3answers
3k views
Play FLV in ActionScript 2
I am very new to Flash and Actionscript. I am trying to simply play an FLV file. I have the following:
import flash.MovieClip;
import flash.Video;
import flash.NetConnection;
import flash.NetStream;
...
0
votes
1answer
191 views
Haxe NME Resizing a Bitmap
I am trying to learn NME with haxe to create a small game. I have setup NME 3.5.5 with Haxe 2.10 in FlashDevelop. To draw the game background, I'm using
// Class level variable
var background : ...
0
votes
1answer
90 views
Can Haxe be compiled to Coffeescript?
I'm wondering whether it's possible to compile Haxe to Coffeescript - are there any tools that are available for this? I find Coffeescript's syntax to be much more concise than that of Javascript, so ...
0
votes
1answer
204 views
Access external Javascript libraries using Haxe
I'm trying to figure out how to access external Javascript libraries from Haxe. Should the source file for the extern class be in the same folder as the corresponding native Javascript file, as well ...
0
votes
1answer
110 views
How Do I Navigate / Update The Haxe SDK Inside of FDT?
On OSX, FDT has the Haxe SDK here:
/Applications/FDT 5.app/Contents/FDT5/haxe/haxe-2.09-osx
Because this is inside of a OSX package, I can't navigate to it. How to I either:
Select it in the ...