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.
0
votes
0answers
21 views
Haxe interface compile to swc with native getter/setter
How to compile swc from haxe source interface with support native getter/setter. When i use:
interface ITest<T>
{
#if flash
@:getter(x) function gx():Int;
@:setter(x) function ...
0
votes
1answer
57 views
Set function return type in Haxe
For some reason, I get this error message whenever I try to compile this simple function: Test.hx:1: lines 1-7 : Invalid -main : Test has invalid main function
public static function main(a:Int, ...
0
votes
1answer
23 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:
...
1
vote
1answer
32 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
1answer
63 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 ...
0
votes
2answers
60 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
...
1
vote
2answers
43 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 ...
3
votes
1answer
136 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
34 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 ...
1
vote
3answers
145 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 ...
2
votes
1answer
31 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
47 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 ...
8
votes
1answer
77 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
35 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 ...
3
votes
4answers
97 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
84 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
109 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 : ...
1
vote
1answer
66 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 ...
1
vote
2answers
61 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
128 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 ...
0
votes
2answers
116 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 ...
0
votes
1answer
95 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?
7
votes
0answers
120 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
76 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
63 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 ...
0
votes
1answer
269 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:
...
0
votes
2answers
67 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
1answer
76 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
185 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
57 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
82 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
63 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 ...
0
votes
1answer
120 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
2answers
83 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 ...
1
vote
3answers
591 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
74 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
57 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. ...
1
vote
1answer
147 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
71 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
171 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, ...
2
votes
3answers
152 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 ( ...
0
votes
2answers
85 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
57 views
How to create re-usable js library using haxe?
I would like to know as I am targeting javascript, how can I create a re-usable library of my own code, that I can use in multi js haxe projects?
I think to create a library js haxe project, that I ...
0
votes
1answer
51 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
0
votes
0answers
288 views
Haxe NME BUILD FAILED Android
I'm trying to compile HAXE NME for Android and I'm getting the following error:
BUILD FAILED
/opt/Android SDK/tools/ant/build.xml:710: The following error occurred while executing this line:
...
0
votes
1answer
92 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">
...
1
vote
0answers
30 views
Erazor recursive helper
I post here my question because haxe mailing list is pretty busy with the haxe3 rc relase.
I would like to have some expertise from´others about how to built a recursive helper for erazor template ...
1
vote
1answer
34 views
Why my sql comment parsing EReg expression not compile?
I have an sql querying tool that is written in Haxe and im trying to add some sql comment support to the code. Currently if a user has any comments (single line or multi line) the query fails on the ...
1
vote
1answer
163 views
another '“java.exe”' is not recognized as an internal or external command
As I have been struggling with this over two hours, I am desperately posting this question,
When I try to build a NME project in FlashDevelop, I get this error:
Running process: C:\Program Files ...
0
votes
1answer
103 views
How can I list available input devices with haxe?
I would like to list all the input devices available when I launch an application, but I can't find a way to do that in the API.
How can I get a list of available keyboards, mice, gamepads, touch ...
