Okay, I found an xiff.swc binary. Next question, do I the proper setup to login and to send a message? I have found a few examples but they all include a login method, which doesn’t seem to be present in the non-Java version of the library. Has something changed for 3.0?
Here’s the code:
var msg:Message = new Message(“Hello World!”);
var connection:XMPPConnection = new XMPPConnection();
connection.useAnonymousLogin = false;
connection.username = “rbottoms”;
connection.password = “xxxxxxxxx”;
connection.server = “1.1.1.1”;
connection.connect(“flash”);
connection.send(msg);