Home ›
Flash
›
Image Viewers
XML SlideShow
2008 Oct 16 Question & Comment: ryanmcanenny
What version of flash was this done. I cannot seem to open it in flash 8.
2008 Oct 16 Question & Comment: ryanmcanenny
Disregard last question. Just noticed Opens With: Flash CS3 (9+)
Would you like to comment or ask questions from opinion?










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.