I have a number of very long FLV's that I broke into 4 separate movies or chapters. The playlist has 12 separate movies but if you put movies 4,5,6&7 together they would be a single movie. Is there some script that would allow 5 to play automatically after 4, 6 right after 5 and 7 when 6 was complete? Movie 8 and others would not be affected. By breaking it into sections the visitor could come back and continue after watching a much shorter movie.
You would need to write some JavaScript that monitored the track that was playing, then when it was done, play or not play the next track. Too involved unless you're a JS GURU.
Just break the playlist up in to separate playlists and load the appropriate one to play 4,5,6,7. Load a different playlist to play 8,9.10,11. Use the standard JS loadFile() function with some links or buttons to load the playlists.
function loadFile(swf,obj) {thisMovie(swf).loadFile(obj);
};
<button onclick="javascript:loadFile('mpl', {file:'playlist-1.xml'}); return false;">First Movie Playlist</button>