I have about 26 images (400kb each, 433X330 px) that I'm loading into my flash movie one at a time with the click of a thumbnail. The thumbs are linked using actionscript, not buttons and they have transitions that run at the thumbnail movie clip. You can see the movie demo here:
The movie works fine, and the images are loading into the movie using a very simple actionscript.
The problem is that the images load very slowly into the movie. By the time the images pop up the first time the transition has already passed. The image blinks a few time and the whole movie is blinking more now because of the image loading. Is there any way to speed up this loading?
Is loading the images using an external XML file better? Because, I am planning to use an XML file to attach to an interface for uploading photos using an ASP.NET page. Can someone tell me if the loading time will improve using XML?
Also, I am wondering if there is a way to start loading the images into individual empty movieclips within the main timeline, before entering the frame. Then the intial load time is still short and the images get loaded into the movieclip container and are just waiting for some to click the thumb calling up the large picture.
I tried this several times last night and couldn't get it to work. Please help this may help someone that is running into a similar problem or is plainning to setup an ASP.NET to XML interface for updating FLASH content.
The movie works fine, and the images are loading into the movie using a very simple actionscript.
Code:
stop();
imageLOADER.loadMovie("photos/alphaGRAPHIC1.jpg");
The problem is that the images load very slowly into the movie. By the time the images pop up the first time the transition has already passed. The image blinks a few time and the whole movie is blinking more now because of the image loading. Is there any way to speed up this loading?
Is loading the images using an external XML file better? Because, I am planning to use an XML file to attach to an interface for uploading photos using an ASP.NET page. Can someone tell me if the loading time will improve using XML?
Also, I am wondering if there is a way to start loading the images into individual empty movieclips within the main timeline, before entering the frame. Then the intial load time is still short and the images get loaded into the movieclip container and are just waiting for some to click the thumb calling up the large picture.
I tried this several times last night and couldn't get it to work. Please help this may help someone that is running into a similar problem or is plainning to setup an ASP.NET to XML interface for updating FLASH content.