Hello,
I am having trouble figuring out data binding. I have 1 XML doc and multiple swf files. What I want to do is have each swf seach through the XML doc for a particular name and then show the data relating to that name. Here is an example of the xml…
<IMAGE NAME=“Item 1”>
<DESCRIPTION>Copy for item 1 goes here…</DESCRIPTION>
<IMAGE>images/1.jpg</IMAGE>
</IMAGE>
<IMAGE NAME=“Item 2”>
<DESCRIPTION>Copy for item 2 goes here…</DESCRIPTION>
<IMAGE>images/2.jpg</IMAGE>
</IMAGE>
So, one swf would look for the NAME “Item 1” and then display “Copy for item 1 goes here…” and the image loacted at “images/1.jpg”
Thanks!