Basically, If I do this:
$rgb($color($remove(%theme.color,)))
%theme.color = 14
Now that'll return the $rgb code, but Im trying to do it in a dialog, and this is HOW it WOULD be done in a dialog (MDX)
mdx SetColor $dname 1,2,3,4,13 text $rgb( $+ $rgb($color($remove(%theme.color,))) $+ )
which would be (if used //echo -a i think)
mdx SetColor $dname 1,2,3,4,13 text $rgb(176,176,240)
but it DOESN'T work, it tries to evaluate it and treats it as whatever $rgb actually returns I THINK is whats happening... please help :-P