Home › Flash › Image Viewers
XML SlideShow
2008 Oct 16Question & Comment: ryanmcanenny
What version of flash was this done. I cannot seem to open it in flash 8.
2008 Oct 16Question & Comment: ryanmcanenny
Disregard last question. Just noticed Opens With: Flash CS3 (9+)
2008 Dec 23Question & Comment: antw
Why it seems to work randomly? Images will be loaded in every 3rd reload or something?
2009 Feb 15Question & Comment: Gnappy
Sorry, it's possible specify dealy for images (i.e how long to display one image before going to next). Thanks
2009 Feb 15Question & Comment: opinion
To Gnappy: ya, it set in xml file, <slidTime>5</slidTime> //show time of pictures line
2009 Feb 24Question & Comment: designerchase
can this be easily sized to 1018px W x 378px H. Also will the gray bars on the right and left side be gone?
2009 Feb 24Question & Comment: opinion
To designerchase:
ya, you need edit
SlideShow.as:
private var picWidth:Number = 530;//width of picture
change 530 to 1018
private var picHeight:Number = 250;//height of picture
change 250 to 378
about gray bars it's just background because demo images have 530px wide, if you set sizes are correct then you will not see any gray bars
2009 Feb 24Question & Comment: designerchase
Thanks for your help the sizing worked, however I have two other issues.
1) There's a blue transparent box during the transition about the size of the original slideshow in the upper left hand corner.
2) Locally the slideshow works fine otherwise but upon uploading it to the server everything loads properly except for the slideshow.
Thanks.
2009 Jul 12Question & Comment: Trianglegreen
Umm, how do I take this download, edit it and put it on my website?
Do you have any comment or questions about opinion file?



















Uploaded By: opinion
This is XML slideshow script. Using AS3.
You can set any images, set time of slideshow and set link for each picture.
Main setting:
settings.xml:
<sets>
<picturesAmount>4</picturesAmount> //amount of pictures
<slidTime>5</slidTime> //show time of pictures
<fadeTime>1</fadeTime> //fade time of pictures
...
<url0>http://www.bigstockflash.com</url0> //pictures link
...
<picturesUrl0>pic/1.jpg</picturesUrl0> //pictures path
...
</sets>
SlideShow.as:
private var picWidth:Number = 530;//width of picture
private var picHeight:Number = 250;//height of picture
loader.load( new URLRequest("settings.xml") );//link to data file
Each line of scripts have detail comments. You will can simply to study or use it in your projects.