To loop over all of the attributes of an element, use a for each loop. : Attributes : XML Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » XML » Attributes »

 

To loop over all of the attributes of an element, use a for each loop.


 


package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){

        var fruit:XML = <fruit name="Apple" color="red" />;
        
        for each var attribute:XML in fruit.attributes(  ) ) {
          traceattribute.name(  ) " = " + attribute.toString(  ) );
        }

    }
  }
}

        



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


Flash / Flex / ActionScript examples

 Navioo XML
» Attributes