I am trying to call a shared object method declared in the client side from the 
server side.

Client side code:

users_so.msgFromSrvr = function(msg) {

        trace("Message from server : "+msg);
};


Server side code:

ISharedObject so = this.getSharedObject(conn.getScope(),"users_so");
ArrayList<String> params = new ArrayList<String>();
params.add(msg);
so.sendMessage("msgFromSrvr", params);


I get no errors, no warnings... but it doesnt do the job!
Please advise!
Thanx!

       
---------------------------------
Be a better Heartthrob. Get better relationship answers from someone who knows.
Yahoo! Answers - Check it out. 
       
---------------------------------
Looking for a deal? Find great prices on flights and hotels with Yahoo! 
FareChase.
_______________________________________________
Red5 mailing list
[email protected]
http://osflash.org/mailman/listinfo/red5_osflash.org

Reply via email to