Overview
The AnyClip Carousel shows the playlist in the form of thumbnails displayed below the player.
Note
Defining whether or not the player carousel is used can only be done through the UI configuration--not in the APIs.
API
The player carousel can be shown/hidden during run-time using the showCarousel API method. The method can be applied to both a single player and multiple players.
// showCarousel - boolean. true to show. false to hide.
//for single player
window.aclreCarouselShowToggle(showCarousel);
//for multiple players (see: Managing Multiple Players)
widget_A.carouselShowToggle(showCarousel)
Example
// hide carousel window.aclreCarouselShowToggle(false);