Manny
05-22-2008, 10:20 PM
Hi all, a newbie to AS3, trying to move on from AS2 and learn some new things. Unfortunately I'm having a few difficulties implementing a new feature to my website.
Take a look at what I currently have, this is done using AS2.
My Web Page (http://www.burndenaces.co.uk/premierleague/)
The crests across the page are linked to other pages, but what I want to do is move on and use XML to bring the crests in from my website, still linked to other pages.
I have created the following XML document, but would anybody be able to help me with coding of the AS3 file.
<?xml version="1.0" encoding="UTF-8"?>
<root>
<COMPETITION NAME="Premier League">
<CLUBS>
<CLUB NAME="Arsenal" CREST="/images/crests/40x40/arsenal.png" LINK="/football/team/0,19734,11670,00.html" />
<CLUB NAME="Aston Villa" CREST="/images/crests/40x40/astonvilla.png" LINK="/football/team/0,19734,11677,00.html" />
<CLUB NAME="Birmingham City" CREST="/images/crests/40x40/birminghamcity.png" LINK="/football/team/0,19734,11694,00.html" />
<CLUB NAME="Blackburn Rovers" CREST="/images/crests/40x40/blackburnrovers.png" LINK="/football/team/0,19734,11676,00.html" />
<CLUB NAME="Bolton Wanderers" CREST="/images/crests/40x40/boltonwanderers.png" LINK="/football/team/0,19734,11672,00.html" />
<CLUB NAME="Chelsea" CREST="/images/crests/40x40/chelsea.png" LINK="/football/team/0,19734,11668,00.html" />
<CLUB NAME="Derby County" CREST="/images/crests/40x40/derbycounty.png" LINK="/football/team/0,19734,11696,00.html" />
<CLUB NAME="Everton" CREST="/images/crests/40x40/everton.png" LINK="/football/team/0,19734,11671,00.html" />
<CLUB NAME="Fulham" CREST="/images/crests/40x40/fulham.png" LINK="/football/team/0,19734,11681,00.html" />
<CLUB NAME="Liverpool" CREST="/images/crests/40x40/liverpool.png" LINK="/football/team/0,19734,11669,00.html" />
<CLUB NAME="Manchester City" CREST="/images/crests/40x40/manchestercity.png" LINK="/football/team/0,19734,11679,00.html" />
<CLUB NAME="Manchester United" CREST="/images/crests/40x40/manchesterunited.png" LINK="/football/team/0,19734,11667,00.html" />
<CLUB NAME="Middlesbrough" CREST="/images/crests/40x40/middlesbrough.png" LINK="/football/team/0,19734,11680,00.html" />
<CLUB NAME="Newcastle United" CREST="/images/crests/40x40/newcastleunited.png" LINK="/football/team/0,19734,11678,00.html" />
<CLUB NAME="Portsmouth" CREST="/images/crests/40x40/portsmouth.png" LINK="/football/team/0,19734,11674,00.html" />
<CLUB NAME="Reading" CREST="/images/crests/40x40/reading.png" LINK="/football/team/0,19734,11673,00.html" />
<CLUB NAME="Sunderland" CREST="/images/crests/40x40/sunderland.png" LINK="/football/team/0,19734,11695,00.html" />
<CLUB NAME="Tottenham Hotspur" CREST="/images/crests/40x40/tottenhamhotspur.png" LINK="/football/team/0,19734,11675,00.html" />
<CLUB NAME="West Ham United" CREST="/images/crests/40x40/westhamunited.png" LINK="/football/team/0,19734,11685,00.html" />
<CLUB NAME="Wigan Athletic" CREST="/images/crests/40x40/wiganathletic.png" LINK="/football/team/0,19734,11682,00.html" />
</CLUBS>
</COMPETITION>
</root>
Thanks in advance,
Manny
Take a look at what I currently have, this is done using AS2.
My Web Page (http://www.burndenaces.co.uk/premierleague/)
The crests across the page are linked to other pages, but what I want to do is move on and use XML to bring the crests in from my website, still linked to other pages.
I have created the following XML document, but would anybody be able to help me with coding of the AS3 file.
<?xml version="1.0" encoding="UTF-8"?>
<root>
<COMPETITION NAME="Premier League">
<CLUBS>
<CLUB NAME="Arsenal" CREST="/images/crests/40x40/arsenal.png" LINK="/football/team/0,19734,11670,00.html" />
<CLUB NAME="Aston Villa" CREST="/images/crests/40x40/astonvilla.png" LINK="/football/team/0,19734,11677,00.html" />
<CLUB NAME="Birmingham City" CREST="/images/crests/40x40/birminghamcity.png" LINK="/football/team/0,19734,11694,00.html" />
<CLUB NAME="Blackburn Rovers" CREST="/images/crests/40x40/blackburnrovers.png" LINK="/football/team/0,19734,11676,00.html" />
<CLUB NAME="Bolton Wanderers" CREST="/images/crests/40x40/boltonwanderers.png" LINK="/football/team/0,19734,11672,00.html" />
<CLUB NAME="Chelsea" CREST="/images/crests/40x40/chelsea.png" LINK="/football/team/0,19734,11668,00.html" />
<CLUB NAME="Derby County" CREST="/images/crests/40x40/derbycounty.png" LINK="/football/team/0,19734,11696,00.html" />
<CLUB NAME="Everton" CREST="/images/crests/40x40/everton.png" LINK="/football/team/0,19734,11671,00.html" />
<CLUB NAME="Fulham" CREST="/images/crests/40x40/fulham.png" LINK="/football/team/0,19734,11681,00.html" />
<CLUB NAME="Liverpool" CREST="/images/crests/40x40/liverpool.png" LINK="/football/team/0,19734,11669,00.html" />
<CLUB NAME="Manchester City" CREST="/images/crests/40x40/manchestercity.png" LINK="/football/team/0,19734,11679,00.html" />
<CLUB NAME="Manchester United" CREST="/images/crests/40x40/manchesterunited.png" LINK="/football/team/0,19734,11667,00.html" />
<CLUB NAME="Middlesbrough" CREST="/images/crests/40x40/middlesbrough.png" LINK="/football/team/0,19734,11680,00.html" />
<CLUB NAME="Newcastle United" CREST="/images/crests/40x40/newcastleunited.png" LINK="/football/team/0,19734,11678,00.html" />
<CLUB NAME="Portsmouth" CREST="/images/crests/40x40/portsmouth.png" LINK="/football/team/0,19734,11674,00.html" />
<CLUB NAME="Reading" CREST="/images/crests/40x40/reading.png" LINK="/football/team/0,19734,11673,00.html" />
<CLUB NAME="Sunderland" CREST="/images/crests/40x40/sunderland.png" LINK="/football/team/0,19734,11695,00.html" />
<CLUB NAME="Tottenham Hotspur" CREST="/images/crests/40x40/tottenhamhotspur.png" LINK="/football/team/0,19734,11675,00.html" />
<CLUB NAME="West Ham United" CREST="/images/crests/40x40/westhamunited.png" LINK="/football/team/0,19734,11685,00.html" />
<CLUB NAME="Wigan Athletic" CREST="/images/crests/40x40/wiganathletic.png" LINK="/football/team/0,19734,11682,00.html" />
</CLUBS>
</COMPETITION>
</root>
Thanks in advance,
Manny