Can someone direct me as to the absolute easiest–most dumbed-down way to reference an empty movie clip (in my timeline) to an external image? Specifically, I have about 100 emtpy movie clips and would like to apply a simple actionscript linking them either directly to the external image or to one global xml scripted list of images such as this:
<?xml version=“1.0” encoding=“utf-8” standalone=“yes”?>
<images>
<pic>
<image>images/image1.jpg</image>
</pic>
<pic>
<image>images/image2.jpg</image>
</pic>
<pic>
<image>images/image3.jpg</image>
</pic>
</images>
If anyone knows of one global actionscript I can use that references all of the mc’s to all of the images that would be even better. Thanks.