i'm trying to list all songs to a file using SDB.AllVisibleSongList. While I get the correct song count (31000+) the script generates an error on record 5201. Trying to start with that record works. but then it gives another error a lot of records later (not the same number, not incremental).
Code: Select all
dim list, i
set list = SDB.AllVisibleSongList
oFile.WriteLine(list.Count)
for i = 0 to list.Count-1
oFile.WriteLine(i & " [" & list.item(i).Title & "]")
next
Regards,
Sebastiaan.