Mega Code Archive

 
Categories / Flash ActionScript / XML
 

Retrieve a list of employees hired in the year 2004

package{   import flash.display.Sprite;      public class Main extends Sprite{     public function Main(){         var staff:XML = <STAFF>           <EMPLOYEE ID="501" HIRED="109">             <NAME>M</NAME>             <MANAGER>J</MANAGER>             <SALARY>25000</SALARY>             <POSITION>Designer</POSITION>           </EMPLOYEE>                    <EMPLOYEE ID="238" HIRED="101">             <NAME>J</NAME>             <MANAGER>D</MANAGER>             <SALARY>55000</SALARY>             <POSITION>Manager</POSITION>           </EMPLOYEE>         </STAFF>                  trace(staff.*.(@HIRED >= 107&& @HIRED <= 101));              }   } }