Trying to add track # Column for Music Files

Please check the FAQ (https://www.xyplorer.com/faq.php) before posting a question...
totmad1
Posts: 131
Joined: 24 Jun 2013 12:37

Re: Trying to add track # Column for Music Files

Post 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
totmad1 (totally mad one)

Post Reply