Where is the export feature on mac?

Where is the export list feature (on windows) for the mac app store version? I can’t seem to find it. On windows i can export list to get a list of songs numbered and sorted by album by using the following configuration. Does anyone know if this is possible on mac? Thanks!

‘‘‘

$filename(list.txt,utf-8)
$puts(counter,0)
$loop(%album%)%album%
$loop(%_path%)$puts(counter,$add($get(counter),1))$num($get(counter),1). %title% - %artist% %comment%
$loopend()
$loopend()

‘‘‘

See here:

do you know how to adjust the script to work in mac? it’s splitting everything.

i’m trying to get a list in this format

albumn title

1.song title - artist

2.song title - artist

etc

The export feature of the Mac version doesn't support the more expressive Export Configuration Language of the Windows version (i.e., support for loops and sorting, support for variables, filename configuration from the export configuration).

Instead, you can configure a format string and Mp3tag applies this format to each selected file, generating a textual representation for each one. The resulting export file contains one line of output per file.

On Windows, it's one of the features that creates a fair share of the support work for me, because not everyone is capable of writing the scripts, but many want to have the result of those scripts. This is the main reason for why I didn't implement it the same way on macOS (aside from some glaring issues with variable handling, which I didn't want to replicate in a rewrite).