I'm having trouble with a new site I'm testing. Everything works almost perfectly in IE8 IE7 IE6, but when I test the site using Chrome 3.0, Safari 4.0 or Firefox 3.5 my images just don't load. To display the images I use a .swf written with my Koolmoves 6.2.0 (registered user). It just uses a createemptymovieclip and a loadmovie to load the image by path/name, resize it, put some tooltip on it and so on. The images are loaded setting the path to another web site that I use just as a repository. The site, of course, is mine as well.
To clear things up:
mysite="http://www.mysite.com"
path="http://SiteWithPics.com/path/"
image="ImageName.jpg"
newClip = _root.createEmptyMovieClip("clip", 1);
newClip.createEmptyMovieClip("holder", 1);
newClip.holder.loadMovie(path+image);
Could the problem dipend on crossdomain? Any suggestion?