It gives NaN error at the beginning of image load.
Posted 2 months ago
xml driven gallery easy to modify. check the smooth transition between the changing images…you can load pics swfs and many more. actionscript is full of notes and the help file explains the xml file. you can load as many images as you want witout any difficulty. there is a small description in every photo except for #2 which has a long description and #3 that shows how to use links to other pages. The file is well documented and is easy to modify, you can change things such as color, speed of image transition and image thumbnails, image sizes and thumbs sizes… and all that stuff 
resize your browser and the gallery should resize too… hopefuly it will it works for me… buyers please rate!
happy to help if you need any =]
check out my other files here:

Posted 2 months ago
just for you to know NaN is not an error… its just that the image is not being loaded yet…. just wait and you will see…
Posted 2 months ago
each image is individual… each photo has its own thumbnail, location AND DESCRIPTION
Posted 2 months ago
Well, NaN stands for Not a Number. A tip: in your code, add a check to see if it is a number or not. Actionscript has a functon call isNaN().
Examples:
trace( isNaN(“Tree”
);
// returns true
trace( isNaN(56) ); // returns false
trace( isNaN(Number.POSITIVE_INFINITY) ) // returns false
So you could try to add something like !isNaN(the_variable) { the_variable == “0” }. Untsted code – YMMV .
Posted 2 months ago