Thumbnail Slider
|
|
|
|
| FlashStore rating: |
|
| User rating: |
Not rated yet.
|
| Date: |
18-12-06 |
| Submited by: |
jumpeye |
| Skill: |
intermediate |
| Price: |
$ 49.99 |
|
|
| |
About |
ThumbnailSlider is a navigation component that enables you to load a set of images,swf's or symbols from library,fed from an xml file ,through which you can scroll with the help of the arrows,or simply depending on the mouse position. It's an excellent component when used in a photo gallery for example, because it was developed to adjust on any environment you could think,technical and artistic, due to the possibility of setting the slider's orientation to vertical positioning,or horizontal,due to the roll over effects on the thumbs that will add creativity and style to your project,due to the resizing types supported by the thumbs that will enable you to display the content in the best way possible.
Compatibility: Flash 8, published for Flash Player 8+
ThumbnailSlider can be accessed from Components panel under UI Pro Components – jumpEYE.
|
UI Access |
| Components panel under UI Pro Components – jumpEYE. |
Support address |
|
|
Useful links |
|
Download documentation |
|
Thumbnail Slider documentation (343.85 KB)
|
Free Trial Version |
|
Click here to download the trial/demo version (3079.88 KB)
|
Code samples |
First you have to instal the mxp file that you received and then close Flash and open it again to refresh the Component panel or just press Ctrl+F7 and press the reload button. With the ThumbnailSlider component in your Components list drag it onto the Stage. You should have the Component Inspector(Alt+F7) or the Properties panel opened and the ThumbnailSlider selected in order to set the xmlPath parameter.
You can also use the actionscrip to add the component on stage like below.
_root.attachMovie("ThumbnailSlider", "slider", _root.getNextHighestDepth());
with (_root.slider)
{
arrowsControl = "click";
border = true;
borderSize = 5;
baseUrl = "";
borderCornerRadius = 5;
tweeningSpeed = 10;
easeType = "Strong";
builtInPreloader = "bar";
preloaderColor = "0x000000";
borderColor = "0xFFFFFF";
orientation = "horizontal";
effectTimeIn = 10;
effectTimeOut = 10;
effectAmount = 50;
rollOverEffect = "colorLight";
reverseRollOverEffect = false;
spacing = 6;
xmlPath = "dataXML.xml";
resizeType = "resize";
thumbWidth = 80;
thumbHeight = 60;
}
_root.slider.setSize(600,60);
var listEvents:Object=new Object();
listEvents.onLoadComplete = function(loaded) {
if (loaded) {
_root.slider.startSlideshow(5)
}
};
listEvents.onReleaseThumb = function(obj:Object, arg, index) {
_root.ldr.contentPath = obj.large;
_root.description.text = obj.description;
};
slider.addListener(listEvents) |
Features |
- cool rollOver effects on thumbs
- multiple navigation options (mouseMove, arrowsClick, arrowsRollover)
- customizable border
- rounded border option |
|
|
|
|
|