Hi there is some things I misunderstand with ATF syntax, if someone with knowledge could help ? I'm lost, thanks a lot
I have those elements working perfect separatly as PART A & PART B but when I'm making a big string there is syntax errors.
Here you may wanna have a look on what I'm trying to do
:
http://imagesia.com/winamp_1cvyt

STRING PART A
1/ CATEGORY ( Displaying energy level from another software, 1 to 9 in a level bar)
4/ RATING ( Trying to keep it centered and if rating=5 it display a big star ★ instead of five ●)
Could someone help me to understand my mystakes please ? I'm blocked alone
Thanks a lot !
I have those elements working perfect separatly as PART A & PART B but when I'm making a big string there is syntax errors.
Here you may wanna have a look on what I'm trying to do

http://imagesia.com/winamp_1cvyt
STRING PART A
1/ CATEGORY ( Displaying energy level from another software, 1 to 9 in a level bar)
2/ TRACKNUMBER ( I don't need real tracknumbers, here i display another energy tag, more like mouvement, from 1 to 3 up / middle / down)code:$if(%category%,$ifgreater(%category%,9, ,$repeat(▓,%category%)$repeat(░,$sub(9,%category%))),)
3/ PUBLISHER & YEAR ( Here i display some tag infos i need in a dashboard style)code:$if(%tracknumber%,$IfStrEqual(%tracknumber%,01,↗ )
$IfStrEqual(%tracknumber%,02,→ )$IfStrEqual(%tracknumber%,03,↘ ), )
STRING PART Bcode:$if(%publisher%,$ifgreater($strstr(%publisher%,instru),0,i≡ , ), )
$if(%publisher%,$ifgreater($strstr(%publisher%,love),0,♥ , ), )
$if(%genre%,$ifgreater($strstr(%genre%,Kids),0,KID , ), )
$if(%genre%,$ifgreater($strstr(%genre%,Synth),0,SYN , ), )
$if(%genre%,$ifgreater($strstr(%genre%,Folk),0,FOL , ), )
$if(%genre%,$ifgreater($strstr(%genre%,Club),0,CLB , ), )
$if(%year%,%year%, )
$if(%publisher%,$ifgreater($strstr(%publisher%,fun),0,ω , ), )
$if(%publisher%,$ifgreater($strstr(%publisher%,xp),0,xp , ), )
$if(%publisher%,$ifgreater($strstr(%publisher%,evenement),0,▲ , ), )
4/ RATING ( Trying to keep it centered and if rating=5 it display a big star ★ instead of five ●)
5/ COMMENT ( Display harmonic and bpm from another software)code:$if(%rating%,$ifgreater(5,%rating%,$repeat( ,$sub(4,%rating%))$repeat(●,%rating%)$repeat( ,$sub(4,%rating%)), ★ ), )
6/ FILENAME & COMPOSER ( Minimal here but efficient for the moment i will work on later if I can fix this before)code:$if(%comment%,%comment%$repeat( ,$sub(12,$len(%comment%))), )
code:$filepart(%filename%)
[ | %composer%]
Could someone help me to understand my mystakes please ? I'm blocked alone

Thanks a lot !
Comment