hi, very simple but very effective, cool plugin :)
I managed to pause/resume the transitions when the mouse enters the Slider area this way:
- inserting the code bellow after line 275 of the file wp-featured-content-slider/scripts/jquery.cycle.all.2.72.js
- line 275 has this code var $el = $(this);
- and I put this extra code after it:
$(this).mouseover(function() {
$(o.s,o.c).cycle('pause');
});
$(this).mouseout(function() {
$(o.s,o.c).cycle('resume');
});
http://wordpress.org/extend/plugins/wp-featured-content-slider/