- Code: Select all
if (!array_key_exists($style, $colorset)) $style = 'Default';
if ($style == 'Default')
{
$color = '084079';
html(4, '<param name="pixx:nickfield" value="true" />');
}
else
{
$color = $colorset[$style][6];
for ($i=0; isset($colorset[$style][$i]); $i++)
{
html(4, '<param name="pixx:color'.$i.'" value="'.$colorset[$style][$i].'" />'.$comment[$i]);
}
}
So basically that disables the nickfield from being showed if one selects silver or brown colorset. But if i choose blue (default) the nickfield's background is white. Any ideas about how to do that?
