Re: Biography Text, Album Info, Picture. www.last.fm
Reply #114 –
Do not refresh "Properties"
1. Open script "Biography..." by pressing "Comfigure..."
2. Paste at the end of the script:
// transfer_data script
var remap_data = window.GetProperty(" remap artist", "ALLMAN BROTHERS BAND:THE ALLMAN BROTHERS BAND;");
transfer_data(remap_file_path("artist"));
function transfer_data(path) {
var tmp_arr = [];
tmp_arr = remap_data.split(/[:;]/g);
try {
remap_file = fso.OpenTextFile(path, 8);
if (tmp_arr.length){
remap_file.WriteLine(tmp_arr.join("\r\n"));
}
remap_file.Close();
} catch(e) {};
}
3. Press "Apply"
4. Check file ... /tmp_Biography/_download/remap_artist.txt
5. If the transfer completed successfully, delete "transfer_data script"
5. Press "Apply".