PDA

View Full Version : Netscape XML Dynamic Images Problem


updmike
03-23-2005, 10:30 PM
Hi All,

I have a gallery of images loaded by an xml doucument that are being loaded into a swf. Works great in IE but the images wont load in Netscape.

I have checked the threads and found that image filenames with _ or spaces will affect this but there is no spaces in or _ in the xml nodes or filenames.

Any Help? :eek:

here is my script in the loading frame.

my_xml = this.firstChild.childNodes;
// Produce Film Sequence
createEmptyMovieClip("mc", 1);
// Load Picture into the film sequence
loadMovie(daten_xml[0].attributes.datei, "mc");
new_width=my_xml[0].attributes.width;
new_height=my_xml[0].attributes.height;
newx_mc=(new_width/2);
newy_mc=(new_height/2);
//get screen dimensions
getver = 240;
gethor = 560;
//set mx postion
mc._x = (gethor-newx_mc);
mc._y = (getver-newy_mc);


The frame repeats with foward and back buttons to navigate the nodes. It is working in IE so i am thinking it is a dynamic loading question rather then an xml problem.

Any Ideas?

Thanks,
Mike