Tagged Questions

Haxe is a open source, multiplatform language that allows developers to target Flash, Javascript, NekoVM, C++ and PHP using the same syntax.

learn more… | top users | synonyms

38
votes
11answers
3k views

Is Haxe worth learning?

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 ...
15
votes
4answers
4k 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
4answers
1k 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 ...
9
votes
4answers
2k 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 ...
8
votes
1answer
327 views

What are the pro and cons of using Haxe over Actionscript-3?

I'm thinking about using Haxe in place of AS3. What are the disadventages of that? I can think about: Difficulties with using native AS3 libraries. Difficulity of debugging after language ...
7
votes
4answers
815 views

Haxe for javascript without global namespace pollution?

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 port of markdown.pl, to haxe. This was pretty ...
6
votes
1answer
58 views

Documentation generating for haxe

I'm looking for a usable documentation generating tool for haxe programming language. Tried so far: Haxedoc: does not support the most basic tags like @param, @return. Chxdoc: no tags, adds lot of ...
5
votes
1answer
65 views

Get the type of a field in Haxe (reflection api)

I have a class: class MyClass { private var num : Int; } I would like to know that the field has the type Int regardless of the current value which can be null for example.
5
votes
1answer
140 views

Is it possible to write an AS3 library with haXe that uses type parameters?

First a little background: I'm looking for a way to create a "collection" library that abstracts the Flash Player version based implementation (Vector on FP10, Array on FP9) away from the calling ...
5
votes
5answers
2k views

How to display autocomplete choices in emacs?

I'm working on autocompletion implementation in emacs for haxe programming language. I already figured out how to obtain list of autocompletions which I wants to present. The list is in format: ...
5
votes
5answers
1k views

Which group messaging technology to use?

I feel a little bit kind of confused — for about 24 hours I have been thinking which group broadcasting technology to use in my project. Basically, what I need is: create groups (by some backend ...
4
votes
1answer
985 views

Comparison of Flash 3D Engines

I am currently digging into the whole Flash 3D stuff and I am quite unsure which engine I should use. I really prefer haXe for development but ActionScript 3 is also fine. Therefore I would like to ...
4
votes
1answer
788 views

haXe: Keyframe animation without frames

I would like to do simple (looping) animation (moving, changing alpha etc) in haXe (flash9). I don't have anything that resembles frames in my library, just single frame assets. Since I am a ...
4
votes
2answers
635 views

Where's the HXML docs?

I've looked all over the HAXE Flash Command-line compiler website but was unable to find any detailed documentation of the HXML files (scroll down to the "Changing SWF properties" section) which ...
4
votes
7answers
1k 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 ...
4
votes
5answers
4k views

How to extend default timeout period in flash application?

I have an application written in flash (actually it is written in haXe and run under SHWX but it doesn't matter here). I have a pretty complex task that consumes a lot of CPU power and sometimes ...
3
votes
1answer
71 views

Debug HaXe from Eclipse

My goal is to debug HaXe application in Eclipse (publishing SWF) on Linux. I have manually installed Eclipse Helios, Flash debugger version and HaXe. I have installed Eclihx. Problem is that I'm ...
3
votes
1answer
125 views

Where is “setTimeout” from JavaScript in Haxe?

is there an implementation of "setTimeout" in Haxe? It's of course possible to use the Timer class, but for a one-shot execution it's not the best way, I guess. Thanks!
3
votes
3answers
199 views

Custom DEFLATE implementation to speed up PNG encoding

I'm optimizing a PNG encoder for use within Flash SWFs (but I'm writing it in HaXe). I've so far managed to speed things up a fair bit, mostly by using speedy memory read/writes. While profiling my ...
3
votes
4answers
335 views

HaXe vs Lua in building a heavy traffic web application

After spending a couple of hours reading on Lua and HaXe I am still unsure of which would be a better choice to use on the development of a heavy traffic web application. Which one would give us ...
3
votes
2answers
456 views

Flash function overloading in haXe

I am having some trouble figuring out how to overload a function in Flash using haXe. I know that Flash does not allow overloads but can accept function parameters without a type declared, but I am ...
3
votes
1answer
800 views

Flashdevelop haxe (flash) debugger

Is there any debugger for Flashdevelop haxe as3?
2
votes
2answers
153 views

How can Haxe convert flash content into objective c?

I went through many links like this,this and this, but not getting good direction to move with. I need to implement some flash content in my iPhone app. Can anybody help me with some good tutorials to ...
2
votes
1answer
167 views

Is haXe really good for php-targetting server side development?

I have such a conception, to build a simple web application using some php/mysql hosting service. I'd also like to create a local version of that app. The local version should work similarly as the ...
2
votes
1answer
43 views

Detecting if there is a timeline mask

I am bumping into a very strange behaviour on Flash. If you on the Flash IDE create a shape with a mask associated to it, save it and then export it as a swf, you cannot programatically know there is ...
2
votes
1answer
84 views

RegExp + cyrillic in flash

Regular expression(for searching separate words in string) "\\bword\\b", seem not to work in flash if word is of cyrillic characters. If word is of cyrillic characters e.g. "[,]word[,]" works as it ...
2
votes
1answer
311 views

How to do a proper haXe preloader for Flash, or what do you think is the best way to do it?

I have recently begun to develop a game in haXe which targets the Flash platform. I can say that I'm not really used to Flash and how it works, it is really apparent that it was intended for ...
2
votes
2answers
251 views

any haXe GC tips?

Recently I am learning haXe for flash, and I have few actionscript3 experience. HaXe is really good language. I notice there is a delete operation in as3, Is there some like delete in HaXe? Is the ...
2
votes
2answers
249 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 ...
2
votes
2answers
382 views

Loose programming in high level languages, how, why and how much?

I'm writing my code in haXe. This is quite irrelevant to the question though, as long as you keep in mind that it's a high level language and compareable with Java, ActionScript, JavaScript, C#, etc. ...
2
votes
2answers
312 views

Multilingual Flash

How do you make a Flash movie (using Haxe, or Actionscript code rather than the IDE) that supports multiple languages? Can you detect the browser's language? Are there utility classes for managing ...
2
votes
3answers
574 views

Something to allow “Writing flex without ActionScript”, or “Java to AVM2 compiler”, or “Write Flex using Java” exists?

There are many dynamic languages that target Sun's JVM (Groovy, Scala, Jython, Jruby etc) and I was sure there are many that target Adobe's AVM as well. But I was surprised to find only haXe do ...
2
votes
2answers
651 views

HaXe Web Framework

I'm just beginning to look at the HaXe language, primarily for flash development, but once I'd seen what Neko can do, also the desktop and web server side of things too. I sort of have my head around ...
2
votes
2answers
738 views

Haxe - Flash project compiles fine, but won't compile using hxcpp

In summary, I think my question is this: How can I force hxcpp to compile haxe code for Flash 8 ? Here's where I'm at. I'm new to haxe, and am trying to get a sample from here: ...
2
votes
3answers
908 views

Debugging Haxe (ActionScript 3)

Are there any reliable debuggers for Haxe out there, in an ActionScript 3 context, and do they support breakpoints, conditional breakpoints, watches, locals and stacks?
2
votes
1answer
498 views

haXe - Generating Exe's (cpp)

I've been instructed to download and install FlashDevelop and it seems fine but I don't know how to generate exe files when writing programs in haXe. I try to Build or Run the project in FlashDevelop ...
2
votes
3answers
539 views

Neko and haxe.Timer.delayed()

As every haXe developer knows, you could use haxe.Timer.delayed() to delay function call for some time. But this function doesn't exist for neko at all. Is there a way to achieve the same results?
1
vote
2answers
44 views

Generating haXe externs for EaselJS

Being new to both JavaScript and haXe, this may have a simple answer, but I've discovered that haXe has externs port on GoogleCode for EaselJS, but they are out of date and correspond to an earlier ...
1
vote
3answers
74 views

How to set up Jeash for haXe?

I am trying to setup Jeash for haXe, so I read this: http://haxe.org/com/libs/jeash/firststeps Now, I found out that I cannot do that just yet: "This is the first time you are runing haxelib. Please ...
1
vote
1answer
58 views

Pausing code execution in chrome from within JS. Possible?

Can I pause execution from within JS code? I am working on a simple haxe-based debug util, and I want to be able to simulate breakpoints, by calling a util method which will trigger the execution ...
1
vote
2answers
143 views

How to use as3 code with haxe without any modification?

I am going to use a lot of as3 code in haxe project. I use latest version of haxe. I really want to use it without any modification. Is there any standard way to do it? Any tools? Thanks
1
vote
1answer
116 views

Delegates in Haxe

Is there something like a delegate in Haxe? This would come in handy when I use a anonymous function but still want to maintain the current class'es variable scope. myObject.callback = ...
1
vote
1answer
91 views

Haxe enum assign value

I need to port a C-like enum to Haxe: enum Items { item1, item2=0x00010000, item3=0x00010001, item4, }; But Haxe doesn't allow default value it seems. How can I do this? My real enum has hundreds ...
1
vote
1answer
46 views

erazor set variable

a little question about erazor https://github.com/ciscoheat/erazor i know this framwork is based on Razor template engine. http://weblogs.asp.net/scottgu/archive/2010/07/02/introducing-razor.aspx i ...
1
vote
1answer
72 views

How do you specify a function type with multiple arguments in haXe?

I'm trying to specify a function type to a function receiving two or more parameters. For a function with one parameter it's easy: var myFunction : Int -> Void; You can reference a function like ...
1
vote
1answer
278 views

Support for XNA WP7 and flash with existing C++ code base - pipeline, tools and approaches

all. We are game development company and we develop casual games for PC/MAC/iOS/Android with our own engine written in C++ (90-100%) and we are happy with it! Now we want to target XNA/WP7 and flash. ...
1
vote
2answers
69 views

Actionscript haXe Evaluate a referenced variable inside a loop in a closure

I've been programming some stuff in Actionscript (haXe) and arrived this very specific problem. Here's the code (pseudo :S): var func:Array = new Array(256); (A) var i:Int = 0; for(;i<256;i++) { ...
1
vote
1answer
425 views

Extracting Actionscript from .fla file, without Adobe Flash

Unlike this guy, I'm using MTASC's haXe to compile SWF from AS. Considering I don't have Adobe CS, what are our options to extract the action scripts from any FLA file? I mean different versions, ...
1
vote
1answer
53 views

Compiling NekoVM dll on win32

Neko is a virtual machine for the HaXe languge. I am having some problem with compiling it on win32. The version in question is neko-1.8.1.tar.gz, which can be downloaded from ...
1
vote
1answer
232 views

Why do certain mouse events work in all browsers but Chrome?

I have some code that gets fired on these mouse events: button.addEventListener(MouseEvent.MOUSE_UP, function(e:MouseEvent) { ... button.addEventListener(MouseEvent.MOUSE_OVER, function(e:MouseEvent) ...

1 2 3