Okay… I need help with a button in a movie clip to tell a dynamic text box to load some text from an xml file. The following is a breakdown of my stage construction.
On my stage
movie clip named “CountyButtons_mc” with the instance name of “Counties_mc”, in that mc I have a button named “51131” and instance name of “_51131”
Also on the stage is a movie clip named “Data_View” with instance name of “Data_View_mc”, this mc holds three dynamic text boxes 1st “CountyName” 2nd “FPS” 3rd “TotPop2006”
My XML file is named “test06.xml” and is formated like this, (actually it has over 150 counties) and I plan on adding additional data under each county level. I have successfully loaded the xml file because I put a trace on load and I can count through trace how many states are in the CBWS in the output.
<CBWS>
<State>
<Counties>
<County Name=“New Kent, VA”>
<FPS>51127</FPS>
<TotPop2006>16852</TotPop2006>
</County>
<County Name=“Northampton, VA”>
<FPS>51131</FPS>
<TotPop2006>13609</TotPop2006>
</County>
<County Name=“Northumberland, VA”>
<FPS>51133</FPS>
<TotPop2006>12820</TotPop2006>
</County>
</Counties>
</State>
</CBWS>
Thanks in adavnce
Titoqan