netrover - 08 August 2009 02:21 AM
Hi there, this is a great module and I have just installed this very easily on the latest prestashop.
Can you please tell me which file and line number I need to edit to change the slider speed?
I have looked here:-
http://sorgalla.com/projects/jcarousel/
But I did not have the skills to establish what I needed to edit.
kindest regards in hope of your help. 
I know this was posted a while ago, but incase anyone else finds this information useful.
Go to modules/jcarousel/assets and edit carousel_start.js
Where it says Auto, enter the desired number of seconds for slide.
function mycarousel_initCallback(carousel)
{
// Disable autoscrolling if the user clicks the prev or next button.
carousel.buttonNext.bind('click', function() {
carousel.startAuto(0);
});
carousel.buttonPrev.bind('click', function() {
carousel.startAuto(0);
});
// Pause autoscrolling if the user moves with the cursor over the clip.
carousel.clip.hover(function() {
carousel.stopAuto();
}, function() {
carousel.startAuto();
});
//$("#mycarousel li").css("display","block");
};
jQuery(document).ready(function() {
jQuery('#mycarousel').jcarousel({
auto: 6,
wrap: 'last',
initCallback: mycarousel_initCallback
});
});