61 comments found.
Does this work with wordpress? @ my own theme that I built from a xhtml.
And what license do I need to buy in order to use this slider on my website?
Hi kiw123,
It is possible to integrate the slider via direct HTML customization and if you use the slider for reselling your theme, it should be bought with extended license otherwise regular lincense will work great for you.
How can add thumbnails with text instead of the slide number below the slides?
Hi laguna999
Sorry but this feature is not supported in the current version of AsyncSllider.
The only way is to do via CSS modification per each nav button for example
.asyncslider_slides_nav a[rel=1] {
/* here the apply the thumbnail for slide item 1 */
}
I know this is real pain, but currently it is the only way.
Thanks for the purchase
Works great! Thanks
Just got the slider up and running for my needs, had to make a few adjustments, but your slider worked GREAT as a backbone for my custom design. So, thanks! Rated it 5 stars of course 
Hi jwillgoesfast,
Thank you very much for purchasing and your evaluation. I’m really glad that you like this plugin.
Hi arcadhia
Unfortunately, AsyncSlider is not developed in that way to organize each layer. It shuffles all elements and them moves them all in different time length.
Thanks for the purchase
Hi,
I’m using this script with forms and loading ajax responses into a slide, sometimes the height changes (with validation messages etc.) I’ve found a way to immediately expand the current slide height to fill the content but if i go to the next slide and back again retains its original height before the ajax call, any ideas on how to get around this?
Hello smanaton,
The only way is firstly load your content from ajax inside
jQuery(document).ready(function(){ ... });
Then after this is done, you initialize the slider via Window Load event
jQuery(window).load(function(){ ...asyncslider call...});
I hope this works for you!
Thanks for purchase
Hello, is it possible to transition from left to right?
Hello, yes that is possible and here is the code to do that
// for specific slide elements will move from left-to-right
as.asyncSlider("moveToSlide", 2, 'right');
as.asyncSlider('next', 'right'); // direction left-to-right
as.asyncSlider('prev', 'right'); // direction left-to-right
This is all you need to do in order to get AsyncSlider working in that way.
Hi,
I’ve noticed on the features that it doesn’t stop on mouse over, and I also tested it out on your page.
I’m interested in using it, so I can list “services”, but each will link to a different page, but if the slider keeps changing, then the user won’t be able to read all of the services, in order to click on the right ones…
Any plans on adding stop on mouse over? Or is that already possible?
Cheers
Hi albertpr9,
Unfortunately I haven’t implemented that feature but you can do this in an alternative way, I’ll tell you how
// Here is the javascript code you have used to create AsyncSlider
var as = $(".asyncslider_env");
as.asyncSlider({...}); // where ... are your options
// here is the trick, just add hover event to do that thing
as.hover(function()
{
// Hover In
as.asyncSlider("set", "autoswitch", "pause");
},
function()
{
// Hover Out
as.asyncSlider("set", "autoswitch", "play");
});
And this should work I am sure! Try it and tell me what is the result.
Thanks for purchase
Strange thing happening. I have added the slider to a home page but when I scroll down the page in IE8 , the page will automatically pop back up to the slider when it changes to the next slide.
This only happens in IE8 as far as I know, any idea what the error may be?
Hi Manzana,
I also tried this on IE8 browsers in different computers (from the demo url) and it did’t pop back to the top of page. Make sure there is no any other javascript doing this, or maybe callback method (if you added) may cause it to go to top!
Thanks for purchase
Is there a way to make the slider wait until all the images load?
Example: http://random26.hostoi.com/
See when the page is first loaded it shows all the images until they load then its all good, how do i change that?
Hi parrotnine,
Unfortunately there is no option added to do this thing but I have an alternative way to do this – Preload all images then start the slider
var as = $(".sample_slider");
as.asyncSlider({autoswitch: "pause"});
var images = ['imageurl1.jpg','imageurl2.jpg','...'];
var loaded = 0;
for(var i in images)
{
var image = images[i];
var loader = new Image();
loader.src = image;
loader.onload = function()
{
loaded++;
if( loaded == images.length )
{
as.asyncSlider("set", "autoswitch", "play");
}
}
}
I will add this feature in the next update.
Thanks for purchase
is there a way to stop it from flickering when the page first load? it flickers all the sldies vertically.. then 1sec later it its normal..
Hi laguna999,
I am sorry for late response
Can you tell me more precisely what is that issue because I am not able to understand the problem.
Just about there..
Having an issue flickering on hover, I’ll send you an email once I have it up to view.
Thanks for responding so quickly, you rock!
What’s the easiest way to use images as the triggers?
I would like to have images inline “like a menu” under the slider.
I guess a step slider is the term?
Ty..
Have you tried the alternative I gave you via email. Did it worked?
Excellent job!
Just bought it to test if it would suit to my next Themeforest theme and it seems now that I have to buy an extended license as well. 
I have only two complaints (nothing serious):
1) Just like bfintal said, if I use absolute position, I can’t use right property because the script will always use the left value.
2) I can’t use CSS3 multiple backgrounds
I don’t have any problems to fix these by myself (at least multiple background support), but I’d like to know do you have any plans to fix the first issue?
Thanks.
Just bought an extended license.
Thank you very much
Hi there,
I’m really struggling to get a slide to slide to onPage Load as i have multiple pages, for example if i click from a url that has no slider on then go back to the page with a slider it will by default land on the home page instead of the about us slide
Please can some one help really appreciated it.
My Skype name is dezmo1087 from South Africa

Hi there,
I’m really struggling to get a slide to slide to onPage Load as i have multiple pages, for example if i click from a url that has no slider on then go back to the page with a slider it will by defualt land on the home page instead of the about us slide
Please can some one help really appreciated it.
My Skype name is dezmo1087 from South Africa
Kinda disappointed I had to style this whole thing when the demo is clearly styled. Defeats the purpose of paying for it when I have to do all the styling work. Just my two cents.
You have the styled version in Help file!
Great slider.
is it possible to pause the slides on mouse hover?
thanks
Yes of course, you can apply this rule to Slider wrapper element
For example:
var aslider = $("#asyncslider").asyncSlider({....});
$("#asyncslider").hover(function()
{
aslider.asyncSlider("set", "autoswitch", "pause");
},
function()
{
aslider.asyncSlider("set", "autoswitch", "play");
});
I havent tried it but it should works, if not then I’ll give you another alternative
Thanks for purchase buddy 
Just bought an extended license. Implemented it with just a few hitches that I thought you might want to know:
- Slider divs needed wrapper divs (or spans in the demos included) for the animations work properly
- I wanted left and/or right floated elements, namely images. But these do not transition nicely. I had to absolutely position items instead. But…
- Absolutely positioned elements are always forced to have a left of zero, so I had to put the images as background images of the slide container divs.
All these aside, the slider is awesome and I will be including this in my next theme and probably the next ones too! 
Hi
Much thanks to you for purchasing extended license buddy 
Well, you are right about the points you cited, very soon I am going to release the new update and probably will fix most of the issues pointed above.
Thank you again