Returns a list of the designers in the company:
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.*.(POSITION == "Designer")); } } }