Banner Rotator FX
free package
Fully functional, no restrictions
Easy to install on any website
XML customizable
GPL Licensed
Watermarked :
paid package
NO watermark:
plus a Flash component (AS2) which can be used in Flash projects
Features
- over 100 transitions to choose from
- supports JPG, GIF, BMP, PNG, SWF
- autoTiming (optionally, each image lasts according to the length of the text; otherwise, you can specify the duration in seconds for each image)
- you can have random images and/or random transitions
- Zoom and Ken Burns image effects
- resizable to the extent of 1680 x 1050 pixels
- if the images are random, the Banner uses the fair advertising policy (you won't see an image twice until all other images are shown)
- images of any sizes can be used; they will be automatically adjusted according to the imageFitting option
- each image can optionally have different particularities, different from the overall properties of the Banner, like transition, image effect, text options, text effects
- HTML and CSS formatted text
Other features:
- the font can be embedded or not
- you can show text only on mouse over, or you can pause the slideshow on mouse over
- once the current image is loaded and displayed, the next image can be loaded in background so the preloader would appear as least as possible
Installation instructions for:
Similar products
Do you have a question?
you will get an answer in 24 hours, tops.






Bill Miller
Posted 2 Days AgoThis is a fine product.
Is there code I could put in the style.css file to center the BannerDiv on the page?
Thanks, Bill
Hi,
You’ll have to use this on your page in the <body> section.
<div style=“text-align: center;”> <div id=“BannerDiv”> </div>
</div>
marco
Posted 2 Days Agoit is possible to cancel the cache of IE, if I use script for more photo loaded in a database, the cache not is emptied
Hi,
What exactly are you trying to do?
Aleksey
Posted 2 Days AgoWhat parameter is responsible for duration of show of images? I want, for example the first image to show 10 seconds, and the second 20 seconds?
Hi,
You have to change the value of autoTiming attribute to false in your settings.xml file. After that you can specify the duration for each image by using the value you want in seconds for duration attribute in images.xml file.
Aleksey
Posted 3 Days AgoEureka!! Guys excuse for a silly question, it was necessary to clear a browser cache!! Thanks, all in a fantastic way work!!!
Murat
Posted 3 Days AgoHow can i add Turkish characters? I changed encoding to ISO-8859-9 and UTF-8 but it didn’t work.
Hello,
You also need to open the settings.xml file and make sure that the value of the embedFont attribute is set to false.
Aleksey
Posted 3 Days AgoForgive me, but I will specify the question – you wrote – update a file images.xml
Explain how to update a file images.xml? What it is necessary to make?
Aleksey
Posted 4 Days AgoGreetings, I have replaced images in a folder images with the and have replaced the text in a file images.xml, but have changed nothing. What do I do not so?
Ester
Posted 4 Days AgoVery good! Support solved my problem quickly!
Thank you very much.
escandar
Posted 4 Days AgoHello and thank you is really good.
I just want to ask how to remove write
images to put my images without the Scriptures.
Hi,
You’ll have to add your images to images folder first and then update the images.xml file accordingly.
Max
Posted 5 Days AgoDownloaded and installed the free version of Banner Rotator and I don’t understand why the images size remain identical whenever I change the size of the whole site with CTRL+mouse wheel under Firefox. Your product is huge and I’d love to fix this before going for a commercial version.
Thanks for your time.
Max
Hi,
You’ll have to open the FLA file (which is present in the paid package) using Flash Professional, give an instance name to the banner that is on the stage, using the Properties panel (Ctrl + P), let’s say banner.
Select the first frame from the main timeline and press F9 to open the actions panel.
Next write the following AS3 code:
var stageResize:Object = new Object(); stageResize.onResize = function () { banner.bannerWidth = Stage.width; banner.bannerHeight = Stage.height; } Stage.addListener(stageResize);