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

learn more… | top users | synonyms

0
votes
1answer
14 views

Changing images dynamically from a Sprite?

I have been looking for this answer for days now and no matter how much I look I can't find it for the life of me. I understand that you can change a bitmap's image easily with something like this: ...
0
votes
2answers
23 views

Imposible to build an android version of my project with nme, haxe and flashdevelop

I’m trying to compile my nme project for android, but until this moment it has been impossible for me. The error message that I’m getting is Running process: C:\Program Files ...
0
votes
0answers
10 views

drag and drop for html5 in NME project

I am using haxe, nme and flashdevelop. I am trying to convert a flex project to html5. I have a few circles drawn by code on stage. In as3 we can usually add individual eventlisteners to each of ...
1
vote
2answers
27 views

Haxe - sending enum as flags to a function

I'm just trying to convert my code from C# to Haxe NME. I use enums as flags. [Flags] enum State { StateOne = 1, StateTwo = 2, StateThree = 4 } And use it if ...
1
vote
1answer
55 views

What does ret reinterpret_cast do?

#define HX_DEFINE_DYNAMIC_FUNC0(class,func,ret) \ Dynamic __##class##func(hx::Object *inObj) \ { \ ret reinterpret_cast<class *>(inObj)->func(); return Dynamic(); \ }; \ Dynamic ...
3
votes
1answer
100 views

OpenGL with Haxe C++?

I'm interested in converting to Haxe as my primary programming language, and it's been awesome so far, however one of my requirements is that I can use OpenGL 3.3 with the C++ target for some 3D game ...
1
vote
1answer
204 views

Is there any algorithm for turning simple HAXE code into C/C++ code files?

I have simple Haxe app like class Main { public static function main() { trace("hello world"); } } I know how to compile such app for windows (not as SWF but as app from pure C\C++ )(and you can ...
0
votes
1answer
35 views

Resize a Sprite image in Haxe?

I am developing a small game using Haxe and box2d. I am rescaling the player body which is a sphere, while the player is in contact with a particular object, but I am trying to scale the image as I ...
1
vote
3answers
113 views

Pros and Cons for HaXe and Kivy

I'm looking to develop an application for iOS, Android, Windows Phone and for Desktop no matter if it's web or standalone. Does anyone have experience with HaXe + NME or Kivy that they can share in ...
1
vote
1answer
29 views

Conventions to specifying digital fixed point binary numbers with macros

I was wondering if there an established convention to specifying fixed point binary numbers in decimal format (with the use of a macro). I am not sure if this possible in C/C++, but perhaps this is ...
2
votes
1answer
24 views

How do I get the haxe command back after installing Haxe 3

I installed Haxe 3 on os x using the manual install method on the following page http://haxe.org/manual/haxe3#manual_installation Manual Installation cp haxe /usr/bin/haxe rm -rf /usr/lib/haxe mkdir ...
0
votes
1answer
60 views

How do I debug or print to console in Munit Haxe?

I'm trying to debug something in Haxe while running Munit. Is there a way I can debug or print to the console information while running my tests?
0
votes
2answers
171 views

WebSockets + haXe?

I need to develop an application using WebSockets and haXe. I came upon this lib: http://lib.haxe.org/p/hxWebSockets But it's outdated. Then I found this blog post: http://bp.io/post/322 But the links ...
3
votes
4answers
86 views

How to declare 2d arrays in Haxe?

Say that in other programming language, I could declare int array[23][23] as a 2d array with 23 elements in each dimension. How do I achieve the same thing by using Haxe ? Currently I need to do ...
0
votes
2answers
100 views

how to make haxe nme preloader render bitmap with transparency

I want to show image with alpha channel over preloader's background for flash target with haxe nme. This need seems to be common when it comes to a preloader. I find several possible way to do ...
9
votes
1answer
76 views

NME Change the window title in C++ and Neko targets

I'm using NME to create a small game. I like to display the objective in the title bar in the Neko and C++ targets. Is that possible? Thanks.
0
votes
1answer
87 views

Using sound assets in Haxe

I am having trouble playing sound assets in Haxe. I am able to import mp3s with swfmill without error: <?xml version="1.0" encoding="utf-8" ?> <movie width="100" height="100"> ...
0
votes
1answer
86 views

Using Bluetooth with Haxe NME

I was planning to use Haxe NME to develop a simple bluetooth chat application. Is it possible to use device specific native APIs with Haxe? Or is there some wrapper class available to use bluetooth?
1
vote
2answers
53 views

Trouble installing the haxe language binding in monodevelop

Good morning. I am trying to setup haxe development tools in monodevelop as shown in this tutorial. My problem is i can't find the haxe language binding the in add-in manager. Does anyone know the ...
0
votes
1answer
33 views

Html5 canvas clickable ONLY on pre-existing line and add a Dot on click

I am having trouble finding a good method to limit my mouse to be only able to click on a pre existing line in canvas (stroke width of 3) What I need to know how to limit mouse so can only click ...
0
votes
1answer
166 views

Problems building an html5 version of a haxe nme project

I have tried to build an html5 canvas version of the nme-runnermark, but without any significant success. The flash version builds without any problems. I get the following stack of errors: ...
0
votes
1answer
60 views

How to exclude classes when compiling SWC from Haxe?

This question is specifically for creating SWCs from Haxe in FlashDevelop (not from AS3 code). Is there a compiler argument to specify some classes to NOT be compiled within a SWC? And if so, is it ...
1
vote
1answer
61 views

RTTI property not found for CPP targets in Haxe NME

I'm using rtti in haxe nme. It works well when targeting flash but when compiling to a cpp target I receive the following error. error C2039: '__rtti' : is not a member of 'Class_obj' I'm doing ...
0
votes
2answers
67 views

Haxe Flixel Trace

Day one Haxe Flixel Coder. Stupid error, but Google isn't helping me. How do I trace to FlashDevelop output using Haxe, NME and Flixel. It works when executing using C++, but nothing for Flash! I've ...
0
votes
1answer
88 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 : ...
6
votes
3answers
3k views

Haxe & NME: fastest method for per pixel bitmap manipulation

This is a small project for testing pixel level manipulation performance of NME for different builds (Windows c++, Flash). It uses BitmapData.setPixel to modify the pixels one by one (320x240 for ...
0
votes
1answer
413 views

Why does my Haxe/Flash game loop slow down over time?

I have a game loop written in Haxe/Flash. For some reason it slows down over time. At first it runs reasonably, but my laptop fan starts spinning up and it gets slower and slower. Why would this ...
0
votes
1answer
96 views

How do I target HTML5 with NME and haXe?

I have created the simple NyanCat example project that comes with NME (purely as an example!) using the following line: nme create NyanCat I can compile (target) to Flash and it works, with the ...
6
votes
0answers
104 views

Running HaXe from iOS app – hxRunLibrary() error

For a client I've developed an iOS + Android app using Cordova (PhoneGap) for the user interface. Now, as an update to this app, I'm am attempting to add a game that was written in HaXe. Originally ...
2
votes
1answer
246 views

Admob via Adwhirl: Not enough space to show ad! Wants: 480, 75, Has: 480, 0

I have searched around and cannot seem to find an answer to an answer to this issue that works. The error I get is "Not enough space to show ad! Wants: 480, 75, Has: 480, 0" It seems that for some ...
0
votes
2answers
62 views

How to connect Haxe project with Nape

I have a src folder, containing a Main.hx & compile.hxml. I run the command sudo haxelib install nape, which reported it ended successfully installing Nape 2.0.5. In the Main.hx I posted the code ...
0
votes
2answers
80 views

Can FlasCC and Haxe be used together?

This is a rookie question as I'm very new to Haxe and have no experience with FlasCC (the C compiler for Flash). Is it possible to use FlasCC and Haxe together, to bring the performance improvements ...
0
votes
1answer
230 views

Haxe NME project with Android target fails to deploy: Activity class does not exist

I created an NME project in FlashDevelop, in the Main.hx I loaded a Bitmap then clicked on the build button with android as target. The build successfully finishes but then I get the following error: ...
2
votes
1answer
70 views

Rust on Leopard

I have joined the [rust-dev] mailing list but only seem to receive mail none of my emails seem to get through :( . I have been on the rust irc and it was empty. I have tried the macport for rust and ...
0
votes
1answer
69 views

FlashDevelop breakpoints for Haxe CPP, allowing “Step-Into” functionality?

Is there a way to set a break-point in FlashDevelop when targeting a Haxe/NME program for windows? It is very hard to follow the logic of a bug if I cannot step into the code.
0
votes
1answer
55 views

sensorGroup and sensorMask combination for ships and bullets in Nape

I have multiple spaceships (SHIP_CB CbType), that can all shoot missiles (BULLET_CB CbType). How do I set up there sensorGroup, sensorMask and InteractionListeners so I get the following behaviour: ...
1
vote
2answers
77 views

Haxe - Objects on stage not displaying when deploying to windows

I am using Haxe/nme with Flash Develope to port a flash game to multiple platforms. All my imported library's are from NME. The program compiles and runs fine with Flash as the target. But when I ...
3
votes
1answer
62 views

Can I precompile a haxelib library so that it doesn't recompile every time I build the project?

I'm building a game with Haxe and NME. My code was compiling pretty quickly, but then I added the Nape physics engine with haxelib and now my compile time has increased by quite a lot. My guess is ...
1
vote
3answers
544 views

HaXe, as3hx, NME, Apache FlexJS - Convert Flash Builder Flex project to HTML5+Js

Have used Flash Builder 4.6 in the past to create some mobile applications. The apps created runs fine only on high-end phone models but also runs slower than native apps. Especially when the app is ...
0
votes
1answer
107 views

Targeting in NME - Demo project cannot converted to, for example, javascript - Target error

I'm playing with the interesting tool NME which is a combination of HaXe and Neko. I like the idea that it is possible to target to different languages but this seems not right? I have downloaded ...
0
votes
1answer
72 views

Is array.push() O(1) in Haxe?

Many language has a standard type which can resize itself when needed, like C++'s vector<T> or C#'s ArrayList<T>. In Haxe, however, I don't see such a data structure. Does Array in Haxe ...
0
votes
1answer
55 views

Haxe: Return value of field

For some reason, I can't modify the value of a field in Haxe. Of course, this doesn't seem to be affecting all of my fields, just this one. Here's (what I'm pretty sure is) the applicable code. ...
0
votes
2answers
82 views

Missing “New Haxe Project” in FDT Free

I've just downloaded the FDT IDE Free version from its website. I wanted to use it for Haxe development so at first startup I chose to develop Haxe projects only. However in the "New FDT Project" ...
1
vote
1answer
132 views

How Can I iterate Dynamic object in HaXe

I have Object parsed from JSON. (haxe.Json.parse) and I need to iterate over it. I already tried to cast this object to Array var data:String='{"data":{"0":0,"1":1},"method":"test"}'; var ...
1
vote
2answers
70 views

How to check if a variable is defined?

In AS3, we say if a!= undefined , but how to that check in haxe?
1
vote
0answers
153 views

Options for rendering svg using haxe/nme

There seems to be a couple of different projects with this goal, with different levels of completion. I have just done a quick search, but that was my first impression. So I thought I should ask, ...
1
vote
1answer
148 views

What is the most accurate method for timing beats of a rhythm game in Haxe (NME)?

I am attempting to create a side scrolling shooter prototype in which the actions of the enemies and bullets are timed to a beat. The target bpm I am working towards is 120. At the centre of this is ...
2
votes
3answers
143 views

How can I get the error line debugging HaXe for windows?

I'm building a game using Haxe w/ HaxeFlixel in FlashDevelop, currently targeting windows platform. While I get error messages in the console, I would like to know if I can get the error line too ( ...
2
votes
2answers
485 views

Can you deserialize a json string to a class instance with Haxe?

I am trying to deserialize a json string into an instance of a class with Haxe. Here is a class: class Action { public var Name:String; public var Id:Int; public function new(id:Int, ...
0
votes
1answer
49 views

Why onMouseUp is not fired?

I tried a simple example for createjs, yet, the onMouseUp event is not fired, what would be the reason? Here is the example I tried

1 2 3 4 5 7