xml photo album automatically creates album names and places
and centers your thumbnails on stage, and creates page holders
for the thumbnails. All you need to do is to define the name of
the albums, sort images, set the number of columns-rows for
thumbnails, and thumbnail size in your XML file.
The code resizes images to stay in frame as well. You can also
attach notes for your photos too. Even you don't need to do any
actionscript. Extremely easy!! Put your files in an image folder
and just work on the XML file. Actionscript is attached externally
as an AS file, easy to adjust for your web site.
developed by selcuk artut

* Create album names for different activities
* Set the number of thumbnails with parameters
* Adjustable thumbnail positioning on stage
* Custom note attachment for images
* Updating via simple XML file editing
- Custom positioning of album names, and color adjusting
- Image width and height are dynamically changed via XML
* Fadein effect for image loading
* Preloader bar included
user
You have to create 3 folders
pics:original images, they can be downloaded by the user
largeimages:holds the images to be displayed within the box
thumbs:thumbnail images
to make things simple, I didn't include thumbnail names on
XML sheet, assuming that the user do not rename the original files
while resizing operations.

For inqueries : info@xmlphotoalbum.com

Check: www.selcukartut.com for other products

User's links:

www.icecreamman.com,www.markusschroth.de,
www.synergyseals.com,www.customphoto.ca,
www.whatsupnow.com
, www.aantij.nl,www.hattu.net,
www.demirkubuz.com,www.dreamella.com,
www.giovanegentile.com,www.cybertoutou.net,
www.la-nuit.it, www.gspraechstoff.ch, www.marais.com.au,www.artphotogrenier.commypoubelleisrich.free.fr,

* I want to disable the link that is connected to Showed image, that link that show the image from PICS directory in a new window.

You need to delete the xmlphotoalbum.as code in line 249 that says
imageframe_mc.onPress = function()
{getURL("pics/"+images[index],"_blank");}
and export again.

* i have put the images I want to display into the largeimages folder and the pic folder but no thumbs are created

You need to create thumbnails by yourself as well.
It works fine in a html page, but I want to integrate it within a flashwebsite but do not know how to do that (or if it is even
possible) Is it, and is there a tutorial or something alike on how to do that.
Actually there is no tutorial. But I may help you adjust the app to your needs, however in that case i would consider asking you a service fee for that.
Both the thumbnail matrix and the albumname_mc items appear on all frames in a flash project. How do I hide them on pages I want them invisible?

You need to add fromgallery = 1; to the page where the album is contained, and then add;
if(fromgallery)
{
for (var rr = 0; rr < noofrow * noofcolumn; rr++)
{
rr = rr + pageindex;
this["thumbframe"+rr].removeMovieClip();
this["thumbframein_mc"+rr].removeMovieClip();
rr = rr - pageindex;
}
for (t=1;t<=albumCount;t++)
{
removeMovieClip("albumnames"+t);
}
}
to other pages, where the album is not contained!