I would like to see an example that shows how to use a color transform in FXG.
Color transform can be used to change the tint, brightness and opacity of a group in FXG. Attributes available are alphaMultiplier, alphaOffset, blueMultiplier, blueOffset, greenMultiplier, greenOffset, redMultiplier and redOffset.
Below is an FXG file with name MyRect.fxg
<Graphic xmlns="http://ns.adobe.com/fxg/2008" version="2">
<Group>
<transform>
<Transform>
<colorTransform>
<ColorTransform alphaMultiplier=".9">
</ColorTransform>
</colorTransform>
</Transform>
</transform>
<Rect width="200" height="200">
<fill>
<SolidColor color="#FF0000" />
</fill>
<stroke>
<SolidColorStroke weight="10" color="#0000FF" alpha="1" />
</stroke>
</Rect>
</Group>
</Graphic>
<local:MyRect x="169" y="130"/>
+