I have all of my emails routed to my phone, so it was nothing to jump up and run to the computer and push the fix :)
Yeah, I need to update those video tutorials. I have done quite a bit of work on making sends to and from the client a LOT less code heavy. For example:
In the video tutorial I showed you how to construct the JSONArray and the JSONObject and then put it all together for a send? Now you just:
In Java:
//# Construct the object this way..
ClientCall call = new ClientCall("methodNameHere");
call.put("propertyName", "propertyValue");
//# Assuming you already have a client object
client.send(call);
Using the AS3 library:
var call:ServerCall = new ServerCall("methodNameHere");
call.put("propertyName", "propertyValue");
server.send(call);
It's a whole lot less code than:
JSONArray a = new JSONArray();
a.add("methodNameHere");
JSONObject o = new JSONObject();
o.put("propertyName", "propertyValue:);
a.add(o);
client.send(a);
which was shown in the videos :)
Anyhow, good luck with your game. I'm always looking to dive into projects with people using SmartSocket, so feel free to contact me via any instant messaging system if you are in need of collaboration :)
GTalk: XaeroDegreaz
Yahoo: XaeroDegreaz
Skype: XaeroDegreaz
Enjoy,
Jerome