Use E4X to dot down to the particular element node, and then use the @ operator followed by the attribute's name to access its value : At : XML Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » XML » At »

 

Use E4X to dot down to the particular element node, and then use the @ operator followed by the attribute's name to access its value


 


package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){
        var fruit:XML = <fruit name="Apple" color="red" />;
        
        tracefruit.@color );


    }
  }
}

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo XML
» At