Re: reverse songs
Now it is possible. Save the following script to a file named "Reverse Playlist.js" and then double-click on this file. Works with Raduga 3.6 and higher. var app = new ActiveXObject("Raduga.Application"); var playlist = app.Playlist; var count = playlist.Count; var songs = new Array( count ); for( var i=0; i<count; i++ ) songs[i] = playlist.Item(i); songs.reverse(); for( var i=0; i<count; i++ ) playlist.Remove(0); for( var i=0; i<count; i++ ) playlist.Add( songs[i] );
|