Page 2 of 2

Re: Trying to add track # Column for Music Files

Posted: 07 Feb 2014 14:28
by totmad1
wrote this to use latest Beta

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;
          }
now moved as suggested

Code: Select all

extratag(1, "TrackNo.");
unfortunately scripting is only available in the Pro version
http://www.xyplorer.com/xyfc/viewtopic. ... 934#p99934