What am i doing wrong
I have a couple of questions in regards using the SharedObject. I want to send a string message using the send method () on the shared object. I'm keeping everything in the fla file for now. I copied the bulk of the code from a documentation just to test it. When I run the application I get an error 1119: access of undefined property doSomething .Which I can't resolve. I want to get more information about it. My final question is, do I receive any kind of notification if the string message succeeded or failed? Thank You
var nc:NetConnection = new NetConnection();
nc.connect("rtmfp://localhost/msgShared");
var so:SharedObject = SharedObject.getRemote("foo", nc.uri, true); so.connect(nc); so.doSomething = function(str) {
//process the str object
Server
var so = SharedObject.get("foo", true);
so.send("doSomethng", "this is a test");
