Flash styring af billeder via XML
Jeg har en Flash MX film der loader et XML dokument med billeder. Jeg vil gerne have at man kan definere hvilke billeder der vises alt efter hvilket menupunkt som har klikket på.Nedenfor har jeg indsat en del af koden. Jeg sender gerne fla, xml og andet materiale.
Er der nogen som kan hjælpe og hvis der skal penge på bordet er det så ok med en plov eller skal der mere på bordet ?
ActionScript
#include "actionscript/start.as"
_global.glXMLPath = "xml/images.xml";
stop();
Start.as
import com.application.Application;
this.onEnterFrame = function (){
percent = (getBytesLoaded()/getBytesTotal())*100;
if (percent == 100){
// do start-up
invisibleAll();
_global.thisApplication = new Application(this,glXMLPath);
delete this.onEnterFrame;
}
}
XML fil
<?xml version="1.0" encoding="UTF-8"?>
<productIntro>
<products>
<product menu="index" id="1" mediaPath="images/product_1.jpg" wait="2000" />
<product menu="index" id="2" mediaPath="images/product_2.jpg" wait="2000" />
<product menu="index" id="3" mediaPath="images/product_4.jpg" wait="2000" />
<product menu="index" id="4" mediaPath="images/product_7.jpg" wait="2000" />
<product menu="concept" id="1" mediaPath="images/product_1.jpg" wait="2000" />
<product menu="concept" id="2" mediaPath="images/product_2.jpg" wait="2000" />
<product menu="concept" id="3" mediaPath="images/product_4.jpg" wait="2000" />
<product menu="designers" id="1" mediaPath="images/product_7.jpg" wait="2000" />
<product menu="designers" id="2" mediaPath="images/product_1.jpg" wait="2000" />
<product menu="history" id="1" mediaPath="images/product_2.jpg" wait="2000" />
<product menu="whatson" id="2" mediaPath="images/product_4.jpg" wait="2000" />
<product menu="whatson" id="3" mediaPath="images/product_3.jpg" wait="2000" />
<product menu="press" id="1" mediaPath="images/product_1.jpg" wait="2000" />
<product menu="press" id="2" mediaPath="images/product_2.jpg" wait="2000" />
<product menu="press" id="3" mediaPath="images/product_4.jpg" wait="2000" />
<product menu="stores" id="1" mediaPath="images/product_8.jpg" wait="2000" />
<product menu="stores" id="2" mediaPath="images/product_2.jpg" wait="2000" />
<product menu="credits" id="1" mediaPath="images/product_5.jpg" wait="2000" />
<product menu="contact" id="1" mediaPath="images/product_9.jpg" wait="2000" />
<product menu="contact" id="2" mediaPath="images/product_7.jpg" wait="2000" />
</products>
</productIntro>
