Export/extract Track name list

Just getting back to this, if you select the tracks and do “Export selected tracks” to a file – let’s say C:\temp\tracks.xml – then Windows users can use Powershell to generate a list of the MIDI track names as follows:

Select-Xml -Path "C:\temp\tracks.xml" -XPath "//obj[@class='MMidiTrack']" | ForEach-Object {$_.Node.string[4].value}

So, for example, I selected four MIDI tracks, did “Export selected tracks” to a file, started Powershell and did:

PS C:> Select-Xml -Path “C:\temp\tracks.xml” -XPath “//obj[@class=‘MMidiTrack’]” | ForEach-Object {$_.Node.string[4].value}
Piano
Pad
Brass
Bass