I have an USB player that not supports an random function and plays the music only in an alphabetic order, not very handy of course. Is it possible that the program add´s an random number in front of the filename?
For example;
Depeche Mode - Just Can't Get Enough.mp3 » [035] Depeche Mode - Just Can't Get Enough.mp3
Depeche Mode - People Are People.mp3 » [050] Depeche Mode - People Are People.mp3
There is no random function available in the script engine but I will add a reference to it.
So this will not work until I upload the next beta update, you will have to wait a few days.
program RenameRnd;
begin
if not tg_Init then exit; // no rows get out
Randomize;
repeat
tg_setField( 'Rename', '[' + PadLeft( IntToStr(Random(100)), 3, '0' ) + '] ' + tg_getfield('Rename') );
until not tg_Skip;
end.