Normal - Horizontal & Vertical Hidden Feature Auto Scroll Nested Carousel Carousel with number Carousel - Big Image Gallery
Yes! I was talking about this feature. You can have message box like above. See the source code for details.
You can modify message with your own CSS.
For your reference. I am adding initialized script. Dont forget to add script in header too. see main page.
What pareameter is required for this. Just three:- showMessage:true, messageClass:'.message', messageOpacity:0.8
<script type="text/javascript">
$(document).ready(function() {
try {
var oHandler = $("#carouseldiv").msCarousel({boxClass:'div.set', width:516, height:198, scrollSpeed:500, showMessage:true, messageClass:'.message', messageOpacity:0.8}).data("msCarousel");
$("#next").click(function() {
oHandler.next();
});
$("#previous").click(function() {
oHandler.previous();
});
} catch(e) {
alert(e.message);
}
})
</script>