# I need help to export configuration

**URL:** https://community.mp3tag.de/t/i-need-help-to-export-configuration/12273
**Category:** Support
**Created:** [July 14, 2011, 6:29pm UTC](https://community.mp3tag.de/t/i-need-help-to-export-configuration/12273 "2011-07-14T18:29:32Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![macaro](https://community.mp3tag.de/letter_avatar_proxy/v4/letter/m/45deac/32.png) [@macaro](https://community.mp3tag.de/u/macaro)
#### Post date: [July 14, 2011, 6:29pm UTC](https://community.mp3tag.de/t/i-need-help-to-export-configuration/12273/1 "2011-07-14T18:29:32Z")

</div>

Good Evening Guys, i need help with export configuration, my version is mp3tag v2.49.

i have this code:

$filename(txt,utf-8)$loop(%\_path%)%artist%  
%title%  
$loopend()

my result is:  
**3 DOORS DOWN**  
AWAY FROM THE SUN  
**3 DOORS DOWN**  
BE LIKE THAT  
**3 DOORS DOWN**  
BEHIND THOSE EYES  
**3 DOORS DOWN**  
HERE WITHOUT YOU

i need the next Result:  
**3 DOORS DOWN**  
AWAY FROM THE SUN  
BE LIKE THAT  
BEHIND THOSE EYES  
HERE WITHOUT YOU

I need a code that only list the artist name and your songs.

---

<div class="post-metadata">

### Author: ![foo\_peter](https://community.mp3tag.de/user_avatar/community.mp3tag.de/foo_peter/32/156_2.png) [@foo\_peter](https://community.mp3tag.de/u/foo_peter)
#### Post date: [July 15, 2011, 6:28am UTC](https://community.mp3tag.de/t/i-need-help-to-export-configuration/12273/2 "2011-07-15T06:28:57Z")

</div>

Please first try:

```
$filename(txt)$loop(%album%,1)$puts(album,$add($get(album),1))$loopend()$ifgreater($get(album),1,$loop(%album%,1)%album%
$loop(%track%) %title%
$loopend()
$loopend(),$loop(%album%,1)%album%$loopend())
```

---

<div class="post-metadata">

### Author: ![macaro](https://community.mp3tag.de/letter_avatar_proxy/v4/letter/m/45deac/32.png) [@macaro](https://community.mp3tag.de/u/macaro)
#### Post date: [July 15, 2011, 11:53am UTC](https://community.mp3tag.de/t/i-need-help-to-export-configuration/12273/3 "2011-07-15T11:53:55Z")

</div>

QUOTE (foo\_peter @ Jul 15 2011, 10:28) \<{POST\_SNAPBACK}\>

Please first try:

```
$filename(txt)$loop(%album%,1)$puts(album,$add($get(album),1))$loopend()$ifgreater($get(album),1,$loop(%album%,1)%album%
$loop(%track%) %title%
$loopend()
$loopend(),$loop(%album%,1)%album%$loopend())<!--QuoteEnd--></div><!--QuoteEEnd-->

```

Thanks my friend, only change the letter "album" by "artist". thanks for your help.

---

<div class="post-metadata">

### Author: ![dano](https://community.mp3tag.de/user_avatar/community.mp3tag.de/dano/32/6_2.png) [@dano](https://community.mp3tag.de/u/dano)
#### Post date: [July 15, 2011, 12:21pm UTC](https://community.mp3tag.de/t/i-need-help-to-export-configuration/12273/4 "2011-07-15T12:21:23Z")

</div>

You can have it shorter:

```
$filename(Artist.txt)$loop(%artist%,1)%artist%
$loop(%title%) %title%
$loopend()
$loopend()
```

---

<div class="post-metadata">

### Author: ![macaro](https://community.mp3tag.de/letter_avatar_proxy/v4/letter/m/45deac/32.png) [@macaro](https://community.mp3tag.de/u/macaro)
#### Post date: [July 15, 2011, 1:56pm UTC](https://community.mp3tag.de/t/i-need-help-to-export-configuration/12273/5 "2011-07-15T13:56:58Z")

</div>

QUOTE (dano @ Jul 15 2011, 15:21) \<{POST\_SNAPBACK}\>

You can have it shorter:

```
$filename(Artist.txt)$loop(%artist%,1)%artist%
$loop(%title%) %title%
$loopend()
$loopend()<!--QuoteEnd--></div><!--QuoteEEnd-->

```

Thanks Brother, one question more, i want to get the artist with bold letter, what can i do?

---

<div class="post-metadata">

### Author: ![dano](https://community.mp3tag.de/user_avatar/community.mp3tag.de/dano/32/6_2.png) [@dano](https://community.mp3tag.de/u/dano)
#### Post date: [July 15, 2011, 3:37pm UTC](https://community.mp3tag.de/t/i-need-help-to-export-configuration/12273/6 "2011-07-15T15:37:12Z")

</div>

Where do you want bold letters?  
A normal text file does not support this.

---

<div class="post-metadata">

### Author: ![system](https://community.mp3tag.de/uploads/default/original/2X/c/ce7035d426cb755a7916793326d23b465222a407.png) [@system](https://community.mp3tag.de/u/system)
#### Post date: [February 9, 2026, 12:23pm UTC](https://community.mp3tag.de/t/i-need-help-to-export-configuration/12273/7 "2026-02-09T12:23:13Z")

</div>


