Use the for..in or for each..in statements to iterate through an XMLList. : Loop through : XML Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » XML » Loop through »

 

Use the for..in or for each..in statements to iterate through an XMLList.


 

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


        var movieList:XML = <movieList>
                                <listName>My favorite movies</listName>
                                <movie id="123">
                                    <title>Titus</title>
                                    <year>1999</year>
                                    <director>J T</director>
                                </movie>
                                <movie id="456">
                                    <title>Rushmore</title>
                                    <year>1998</year>
                                    <director>W A</director>
                                </movie>
                                <movie id="789">
                                    <title>Hall</title>
                                    <year>1977</year>
                                    <director>Woody Allen</director>
                                </movie>
                           </movieList>;
        
        var movies:XMLList = movieList.movie;
        for each (var movie:XML in movies) {
            movie.title = movie.title.toUpperCase();
        }
        trace(movies.title);
        
    }
  }
}

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo XML
» Loop through