Home / Components / Menus & Navigation / Advanced Images Slider /
Advanced Images Slider
33 purchases
License:
By purchasing and downloading this license, you are entitled, as buyer, to use the product in ONE SINGLE NON-COMMERCIAL PROJECT ( website&nbs... [+]
> View graphic table with full license features
$8.00
Package includes: FLA
Flash Version: Flash 8, Flash CS3, Flash CS4
Viewable with: Flash Player 8
Action Script: ActionScript 2.0
Product ID:F0901695
Please install flash first.
Features:
- Fully resizable
- Customizable sizes/borders/margin/colors/opacity
- Any images amount
- Small size ONLY 6 kb swf
- Any images sizes and sides ratio
- Full support HTML tags in title (br,i,a href,b,font face color size etc.)
- Target link support
- Few smoothing levels, can be viewed on low-end machines
- Easy modify and easy using as part of another Flash AS2 projects
All you need to do it's add your images paths,links and title to xml file.
Main XML setting:
//Thumbnails width
160
//Thumbnails height
80
//Thumbnails border size
20
//Thumbnails border color in RRGGBB format
FFFFFF
//Thumbnails border opacity
10
//Distance between thumbnails
10
//Background color in RRGGBB format
666666
//Background image path
//Smoothing Level (0-2) 0 - min CPU Load; 2 - max CPU Load
2
Item XML setting:
- title //Title, text under thumbs. You can use HTML tags in description (br,i,a href,b,font face color size etc.)
- link //click link url
- target //link target (_blank,_parent, etc...)
- imgsrc //Path to big image or swf
$8.00
License:
Personal License By purchasing and downloading this license, you are entitled, as buyer, to use the product in ONE SINGLE NON-COMMERCIAL PROJECT ( website or other multimedia project not generating income ), your personal work or work for a client. You may not redistribute / resell the functionality provided with the purchased product without the author's and / or FlashComponents.net written permission, but you may modify its content. In case you want to use the product for a commercial project then you will have to buy the 'Commercial License'.
| Usage Terms: | Personal | Commercial | Multiple |
|---|---|---|---|
| Use in ONE SINGLE NON-COMMERCIAL project | |||
| Unlimited use in the same project | |||
| Use in ONE SINGLE COMMERCIAL project | |||
| For your client's ONE SINGLE COMMERCIAL project | |||
| MULTIPLE COMMERCIAL projects | |||
| For your client's MULTIPLE COMMERCIAL projects |























7 comments
Add comment
himanshu.tyagi
It’s not taking online path for images in xml
like rather putting (images/1.jpg),
we put (http://l.yimg.com/a/i/ww/news/2009/06/29/yao.jpg)
than its not working
Can u please help me on this..
#  /  PM  /  posted on Jun 30, 2009
dhunter
2 himanshu.tyagi himanshu.tyagi
ya, you right.
your images must placed on same server where flash file are placed
#  /  PM  /  posted on Jun 30, 2009
himanshu.tyagi
XML contain error:
XML Parsing Error: junk after document element
Location: file:data.xml
Line Number 12, Column 1:<images>
^
#  /  PM  /  posted on Jul 03, 2009
himanshu.tyagi
Error in main xml
http://www.flashcomponents.net/upload/samples/2891/data.xml
#  /  PM  /  posted on Jul 03, 2009
dhunter
2 himanshu.tyagi himanshu.tyagi
why you try parsing xml file via browser? this file formated only for flash, you no need use another parser program
#  /  PM  /  posted on Jul 05, 2009
clausg
I do not want initial image to be b/w andout of focus, I want to use the original photo.
How do I do this?
Thanks
#  /  PM  /  posted on Jul 29, 2009
dhunter
2 clausg
In this case you need edit fla source:
1. find and remove blur effect:
//GLOW POST EFFECT START //REMOVE IF NEED if (ImageSmoothingLevel>1) { img2 = target_mc.bitmapCopy(thumnails[“thumb_”+count_img], “img2”, 2); img2.thumb_resize(Thumbs_width,Thumbs_height); img2.Glow(50); } //GLOW POST EFFECT END //REMOVE IF NEED
2. find and remove b/w function // B/W/COLOR
MovieClip.prototype.MakeGray = function(zerokoef) { import flash.filters.BitmapFilter; import flash.filters.ColorMatrixFilter; .... var filter:BitmapFilter = new ColorMatrixFilter(matrix); this.filters = [filter];
};
3.find and remove over light effect
//overlight post effect
MovieClip.prototype.ColorT = function(val) { var my_color:Color = new Color(this);
...
};
#  /  PM  /  posted on Jul 29, 2009