Re: Trying to add track # Column for Music Files
Posted: 07 Feb 2014 14:28
wrote this to use latest Beta
now moved as suggested
unfortunately scripting is only available in the Pro version
http://www.xyplorer.com/xyfc/viewtopic. ... 934#p99934
Code: Select all
"mp3TrackNo"
$SelectedItems = get("SelectedItemsPathNames", "|");
extratag(1, "TrackNo.");
foreach($Item, $SelectedItems, "|") {
$TrackNo = property("Track", "$Item");
if($TrackNo <10){
$TrackNo = 0$TrackNo;
}
tag "$TrackNo",$Item , 3;
}Code: Select all
extratag(1, "TrackNo.");http://www.xyplorer.com/xyfc/viewtopic. ... 934#p99934