Tutorials haXe API
From HippoHX
Using haXe API on the client is easy because you use the same classes as if you were on the backend. If you take a look for example to Application class you can see the conditional compilation flags.
When compiling to Neko, the class make the actual calls to the Neko runtime and perform the tasks.
When compiled to Flash, the class calls the backend using a swhx.Connection object, but all this is hidden and transparent. So, use the same classes you would use if compiling to backend. They are stored in source > server > com > hippohx.
See the haXe client demo for a sample.

