Шукати в статтях підтримки

Остерігайтеся нападів зловмисників. Mozilla ніколи не просить вас зателефонувати, надіслати номер телефону у повідомленні або поділитися з кимось особистими даними. Будь ласка, повідомте про підозрілі дії за допомогою меню “Повідомити про зловживання”

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 відповідь
  • 1 має цю проблему
  • 21 перегляд
  • Остання відповідь від 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.

Усі відповіді (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>

Змінено cor-el