Solved! Go to Solution.
Rhett,
The text is actually black but it's alpha makes it look gray. Anyway you have to work with the AttributionSkin.mxml from the API
<s:Label id="label1"
left="0" right="0" bottom="0"
click="label1_clickHandler(event)"
maxDisplayedLines="1"
showTruncationTip="false"
text="{hostComponent.text}"
textAlign="right"
color="black"
fontFamily="Veranda"
fontWeight="bold"
fontSize="9"
visible="true">
<s:filters>
<s:GlowFilter blurX="2"
blurY="2"
color="0xFFFFFF"
strength="7"/>
</s:filters>
</s:Label>Ok, I figured out where it is coming from. (layer.copyright)
R_
It gets populated with the text from the "Credits" box in the ArcMap documents layer properties.
The dataframe and layers within it have thier own "Credits" box.
R_