Object Building in ActionScript
        Posted  
        
            by kumar
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by kumar
        
        
        
        Published on 2009-07-15T16:24:19Z
        Indexed on 
            2010/06/13
            10:02 UTC
        
        
        Read the original article
        Hit count: 223
        
actionscript-3
I am getting an object structure like
Object--
   --- Object
        STRING1:VALUE
        STRING2:VALUE
        STRING3:VALUE 
   ---- OBJECT
         STRING1:VALUE
         STRING2:VALUE
         STRING3:VALUE
Now I want to filter this object because i need only STRING2:VALUE in the same object structure and need to a an structure similar to:
    Object
     STRING2:VALUE
    Object
     STRING2:VALUE
and I need to do it in runtime can somebody please let me know ..
© Stack Overflow or respective owner