Â
Hi Techyv,
Flex mobile image pre-loader uses a cache to store the images to be viewed and how do the images switch from the current image to view to the next image in the cache queue? Is it implemented using arrays where they are chosen and indexed when clicked?
Â
Flex mobile image preloader queuing method
Â
Honestly about arrays I am not sure but I think pre-loaders work easily with flash. Flash animations are done using adobe flash software which has a built in loader and progress bar that executes a pre-loader component. Example of a code that executes this is as follows;
If (_root_framesload>=_root_totalframes) { gotoAndPlay ("scene2", 1);Â }
This code loops the pre-loader over and over thus a flash movie of different pictures show in a given time.
You can get flash tutorials here-Â http://www.flashkit.com/tutorials/
Â