Flash components › Flash files › Image Viewers
XML SlideShow
|
Posted on 2008 Oct 16 |
What version of flash was this done. I cannot seem to open it in flash 8.
|
Posted on 2008 Oct 16 |
Disregard last question. Just noticed Opens With: Flash CS3 (9+)
|
Posted on 2008 Dec 23 |
Why it seems to work randomly? Images will be loaded in every 3rd reload or something?
|
Posted on 2009 Feb 15 |
Sorry, it's possible specify dealy for images (i.e how long to display one image before going to next). Thanks
|
Posted on 2009 Feb 15 |
To Gnappy: ya, it set in xml file, <slidTime>5</slidTime> //show time of pictures line
|
Posted on 2009 Feb 24 |
can this be easily sized to 1018px W x 378px H. Also will the gray bars on the right and left side be gone?
|
Posted on 2009 Feb 24 |
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
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
|
Posted on 2009 Feb 24 |
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.
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.
|
Posted on 2009 Jul 12 |
Umm, how do I take this download, edit it and put it on my website?
|
Posted on 2010 Aug 05 |
I changed the pic width and height, but it still displays smaller. Any help would be greatly appreciated. Thanks!
























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.