Pretraži podršku

Izbjegni prevare podrške. Nikad te nećemo tražiti da nas nazoveš, da nam pošalješ telefonski broj ili da podijeliš osobne podatke. Prijavi sumnjive radnje pomoću opcije „Prijavi zlouporabu”.

Learn More

I developed a site in flash/as3.0. The site loads, but the dynamic/xml galleries do not. It just sits there. The site is www.aeon-design.com, see for your self!

  • 1 odgovor
  • 1 ima ovaj problem
  • 21 prikaz
  • Posljednji odgovor od cor-el

more options

I have developed a full flash/actionscript 3.0 website, at www.aeon-design.com. The site does load as normal and all aspects of the site work fine. The problem seems to be when I look at the galleries. Each gallery page displays a description, two collums of thumbnails and the first image in the thumbnail list, ALL this information is dynamically retrieved by flash reading an xml file for each gallery, which are in the same folder on the server, therefore Im wondering if firefox has a problem with dynamic content as the site works beautifully in IE and google chrome as it stands.

I have developed a full flash/actionscript 3.0 website, at www.aeon-design.com. The site does load as normal and all aspects of the site work fine. The problem seems to be when I look at the galleries. Each gallery page displays a description, two collums of thumbnails and the first image in the thumbnail list, ALL this information is dynamically retrieved by flash reading an xml file for each gallery, which are in the same folder on the server, therefore Im wondering if firefox has a problem with dynamic content as the site works beautifully in IE and google chrome as it stands.

Svi odgovori (1)

more options

You have backslashes in the XML file instead of forward slashes, so Firefox requests the wrong URL

<btnUrl>effeti\luce\thumb1.jpg</btnUrl>
<btnUrl>effeti\luce\thumb2.jpg</btnUrl>

Should be:

<btnUrl>effeti/luce/thumb1.jpg</btnUrl>
<btnUrl>effeti/luce/thumb2.jpg</btnUrl>

Izmjenjeno od cor-el