this may be a very newbie problem but i have a gallery that loads images through an xml file and circulates through them with a next button. It all works fine when i test my movie in flash, but when i upload it the images do not appear, only the next button.
I’m assuming it had something to do with the link to the xml file which is just
var request:URLRequest = new URLRequest(“print.xml”);
loader.load(request);
but i tried changing it to
var request:URLRequest = new URLRequest(“ftp://www.alexanderalter.ca:21/public_html/print.xml”);
loader.load(request);
and it still didn’t work.
this is driving me crazy but i don’t know enough about actionscript to know what im doing wrong, any help would be greatly appreciated!