Yes this is possible!At the end of the day, the information that
describes the position of a any game token is as follows: x, y, and ID.
If you create custom VO that contains that information, and send a
message containing that VO to the server, then you can update the token
on all clients simultaneously.A couple of gotchas: Use
Message.registerClass to make sure your VO gets decoded properly so you
don't have to reparse it, and make sure you wait for the message to come
back from the server bef...