RED5 JAVA:

username="dave";
status="online";
so.setAttribute(uid, new Object[]{username,status});


FLASH:
users_so.onSync = function(infoList) {
  for (var i in users_so.data) {
    var clientObj = users_so.data[i];
    trace("clientObj="+clientObj);
 };


result :
clientObj=dave,online
then I have to SPLIT this string to get the username and his status.


I would like to have transmit these 2 informations (username, status) in 2 
different slots to avoid split it with Flash string functions

My question is how to transmit an array or an object as SharedObject and get 
its content throuigh Flash ?

Thanks




        

        
                
___________________________________________________________________________ 
Yahoo! Mail réinvente le mail ! Découvrez le nouveau Yahoo! Mail et son 
interface révolutionnaire.
http://fr.mail.yahoo.com


_______________________________________________
Red5 mailing list
[email protected]
http://osflash.org/mailman/listinfo/red5_osflash.org

Reply via email to