Hi there!
I am using loadClip to load some jpg into flash. I am using IIS as webserver to test the application. The problem is that the images placed in subsubfolder are not being loaded!
Example:
images in “allpics” are loaded
images in “allpics\images1” are not loaded
that is, only images in the FIRST subfolder are loaded…why?
I have enabled “Directory Listing” to all folder and I have granted all permissions in IIS.
Code:
var loadListener:Object = new Object();
var mcLoader:MovieClipLoader = new MovieClipLoader();
mcLoader.addListener(loadListener);
// this works:
mcLoader.loadClip(“allpics\” + file + “.jpg”,“thumb_container1”);
//this DOES NOT work
mcLoader.loadClip(‘allpics\imagesA\’ + file1 + “.jpg”,“thumb_container1”);
(of course, I only use one at a time)
Does anybody have a solution for this? Thanks 