Flash not working correctly in my browser

I am very new to flash and have run into something I am not sure how to solve. I have a flash movie that is very much like XML Photo Gallery tutorial with a number of enhancements. It works perfectly fine when I test the movie; it loads the images, buttons work etc. When I embed view the flash movie in a web page and view it through a browser everything works but the loading of the images. It seems like a problem with how I am calling my xml file. I am not sure where I have gone wrong, any help would be appreciated.

you say it works fine when testing in flash but not from in a browser?

did you try using Flash to output a HTML file when publishing then testing it?

I think it does sound like your flash file can’t find your xml file, if you’ve referenced it like this

my_xml.load(‘myfile.xml’);

Then myfile.xml has to be in the same directory as the swf file.
If this doesn’t work try placing your xml file on your hosting account (if you have one) and then calling the file as so

my_xml.load(‘http://www.mydomain.com/myfile.xml’);

let us know it any of this helps :cool:

I figured out the problem. At Some point I was messing around with a .htaccess file. Long story and still working on the solution to a totally different problem. Thank you for your help.