I'm trying to add a simple symbol (a plus!) to a spark button that has a circular skin. My approach: MXML code inside the button skin (the button skin itself is full of s:Rect already so seems like a pretty simple choice). Now to the weirdness: If I change the size of the button (using the HSlider in the example below) the plus jiggles inside the button. What I mean by jiggle: it seems like the relative position of the vertical and the horizontal part of the + vary - ever so slightly - with the overall size.
Question: does anyone know why this is happening? Am I doing something wrong (see code below), is this just the wrong approach (e.g. never do MXML graphics inside a skin for some reason that I don't comprehend), or is this a known issue (maybe a refresh issues?)?
Would love to hear your thoughts!
thank you all
f
-=-=-=-=-=-=-=-=
The App
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
width="600" height="400">
<s:VGroup>
<s:HSlider minimum="0" maximum="100" value="50" id="hsSize"/>
</s:VGroup>
<s:Button verticalCenter="0" horizontalCenter="0" width="{hsSize.value}" height="{hsSize.value}" skinClass="skinRotation.skin"/>
</s:Application>
The skin
<?xml version="1.0" encoding="utf-8"?>
<s:SparkSkin xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:fb="http://ns.adobe.com/flashbuilder/2009" minWidth="21" minHeight="21" alpha.disabled="0.5">
<!-- host component -->
<fx:Metadata>
<![CDATA[
[HostComponent("spark.components.Button")]
]]>
</fx:Metadata>
<fx:Script fb:purpose="styling">
<![CDATA[
static private const exclusions:Array = ["labelDisplay"];
override public function get colorizeExclusions():Array {return exclusions;}
override protected function initializationComplete():void
{
useChromeColor = true;
super.initializationComplete();
}
]]>
</fx:Script>
<!-- states -->
<s:states>
<s:State name="up" />
<s:State name="over" />
<s:State name="down" />
<s:State name="disabled" />
</s:states>
<!-- layer 2: fill -->
<!--- @private -->
<s:Ellipse id="fill" left="1" right="1" top="1" bottom="1">
<s:fill>
<s:SolidColor color="0x000000"/>
</s:fill>
</s:Ellipse>
<s:Rect horizontalCenter="0" verticalCenter="0" height="{fill.width * 0.6}" width="{0.14 * fill.width}">
<s:stroke>
<s:SolidColorStroke color="0x000000"/>
</s:stroke>
<s:fill>
<s:SolidColor color="0xff0000"/>
</s:fill>
</s:Rect>
<s:Rect horizontalCenter="0" verticalCenter="0" height="{fill.width * 0.14}" width="{0.6 * fill.width}">
<s:stroke>
<s:SolidColorStroke color="0x000000"/>
</s:stroke>
<s:fill>
<s:SolidColor color="0xff0000"/>
</s:fill>
</s:Rect>
</s:SparkSkin>