QUOTE(Frank Bicking @ Dec 1 2006, 08:39)

Can't you just use "Add value"?
Another idea: "Split field by separator", Field name: "MOOD", Separator: ";"
It would really help to narrow down your problem if you could offer more examples.
OK with MT I'd like to change
CODE
ARTIST Patti LaBelle
TITLE On My Own (feat. Michael McDonald)
to
CODE
ARTIST Patti LaBelle; Michael McDonald
TITLE On My Own
I already using a
script that changes
CODE
TITLE Provider (Zero 7 Remix)
to
CODE
TITLE Provider
VERSION Zero 7 Remix
so the basic concept should be the same.
For MOOD and STYLE I'd like to create a track info mod that can simply set multiple values.

The code behind this uses titleformatting to append the value:
CODE
// Info Heading Color e.g. "Title:"
$puts(head,$rgb(61,129,193))
// Info Color e.g. "Black Dog"
$puts(info,$rgb(255,255,255))
// Follow Cursor Color
$puts(followcursorcol,$rgb(200,150,50))
$puts(text2,$rgb(255,255,255))
$puts(text1,$if(%_trackinfo_nowplaying%,$rgb(61,129,193))$if(%_trackinfo_followcursor%,$get(followcursorcol)))
$align(center,)$get(text1)Current Mood: $get(text2)$if2(%mood%,NONE)
$button2(0,30,0,0,$calcwidth( Freeform ),13,'$font(tahoma,8,,255-255-255)Move','$font(tahoma,8,,61-129-193)Move',TAG:SET:mood:$if(%mood%,%mood%';'Move,Move),)
$button2(0,45,0,0,$calcwidth( Freeform ),13,'$font(tahoma,8,,255-255-255)Sing','$font(tahoma,8,,61-129-193)Sing',TAG:SET:mood:$if(%mood%,%mood%';'Sing,Sing),)
This "works" in the sense that the value is appended but it's interpreted as
"Original Value;New Value"instead of
"Original Value"; "New Value"