
How to play playlist's scrollbar bigger?
Possible to have a bigger scrollbar? My playlist is a bit long
Thanks
Possible to have a bigger scrollbar? My playlist is a bit long
Thanks
Typo: How to *make playlist's scrollbar bigger
Thanks
It can’t be really changed. Where is this running?
As far as I am aware of, the height(size) of the scroll-bar is determined by the height of the JWPlayer displaying the playlist irrespective in the number of entries of the playlist.
You could create separate playlists for each category or genre and then use dynamic loading of the playlists.
To see this in action
www.starbase-alpha.com/beta4x-68.html
There I have a video playlist, audio playlist and a cartoon playlist which you are able to select dynamically.
The trick is that the although the JWPlayer is instantiated with a single playlist.js (JSON playlist) which in fact contains three separate JSON playlists.
Thus the playlist(s) are loaded in the example and if using the Newsticker plugin as follows:
<ol>
<li>onclick="jwplayer('video').load(config0.playlist);document.getElementById('newsticker1').innerHTML=config0.playlist[0].description; NN=0;"
</li>
<li>onclick="jwplayer('video').load(config1.playlist);document.getElementById('newsticker1').innerHTML=config1.playlist[1].description; NN=1;"
</li>
<li>onclick="jwplayer('video').load(config0.playlist);document.getElementById('newsticker1').innerHTML=config2.playlist[2].description; NN=2;"</li>
</ol>
Hope this isn't TMI for you.
It is not possible to explicitly set it though.