You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by bi...@apache.org on 2013/10/15 11:35:53 UTC

[2/2] git commit: [flex-sdk] [refs/heads/release4.11.0] - Fixed Checkbox and RadioButton skin for 480 DPI.

Fixed Checkbox and RadioButton skin for 480 DPI.


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/77f4c997
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/77f4c997
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/77f4c997

Branch: refs/heads/release4.11.0
Commit: 77f4c997ab5fe05e10b4d1fedb3ae3fd14c9db49
Parents: f22a953
Author: Om <bi...@gmail.com>
Authored: Tue Oct 15 02:32:36 2013 -0700
Committer: Om <bi...@gmail.com>
Committed: Tue Oct 15 02:32:36 2013 -0700

----------------------------------------------------------------------
 .../src/spark/skins/mobile/CheckBoxSkin.as      |  2 +-
 .../src/spark/skins/mobile/RadioButtonSkin.as   | 23 ++++++++++++++++++++
 .../skins/mobile480/assets/CheckBox_down.fxg    | 12 +++++-----
 .../mobile480/assets/CheckBox_downSymbol.fxg    |  6 ++---
 .../assets/CheckBox_downSymbolSelected.fxg      | 11 +++-------
 .../skins/mobile480/assets/CheckBox_up.fxg      | 12 +++++-----
 .../mobile480/assets/CheckBox_upSymbol.fxg      |  6 ++---
 .../assets/CheckBox_upSymbolSelected.fxg        |  9 ++------
 .../skins/mobile480/assets/RadioButton_down.fxg |  8 +++----
 .../mobile480/assets/RadioButton_downSymbol.fxg |  4 ++--
 .../assets/RadioButton_downSymbolSelected.fxg   |  4 ++--
 .../skins/mobile480/assets/RadioButton_up.fxg   |  6 ++---
 .../mobile480/assets/RadioButton_upSymbol.fxg   |  4 ++--
 .../assets/RadioButton_upSymbolSelected.fxg     |  4 ++--
 .../skins/mobile640/assets/RadioButton_down.fxg |  2 +-
 15 files changed, 63 insertions(+), 50 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77f4c997/frameworks/projects/mobiletheme/src/spark/skins/mobile/CheckBoxSkin.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/mobiletheme/src/spark/skins/mobile/CheckBoxSkin.as b/frameworks/projects/mobiletheme/src/spark/skins/mobile/CheckBoxSkin.as
index ff28c6b..95226fa 100644
--- a/frameworks/projects/mobiletheme/src/spark/skins/mobile/CheckBoxSkin.as
+++ b/frameworks/projects/mobiletheme/src/spark/skins/mobile/CheckBoxSkin.as
@@ -139,7 +139,7 @@ public class CheckBoxSkin extends SelectableButtonSkinBase
 				layoutGap = 30;
 				minWidth = 96;
 				minHeight = 96;
-				layoutBorderSize = 3;
+				layoutBorderSize = 4;
 				
 				break;
 			}

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77f4c997/frameworks/projects/mobiletheme/src/spark/skins/mobile/RadioButtonSkin.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/mobiletheme/src/spark/skins/mobile/RadioButtonSkin.as b/frameworks/projects/mobiletheme/src/spark/skins/mobile/RadioButtonSkin.as
index 17def24..a6a17ec 100644
--- a/frameworks/projects/mobiletheme/src/spark/skins/mobile/RadioButtonSkin.as
+++ b/frameworks/projects/mobiletheme/src/spark/skins/mobile/RadioButtonSkin.as
@@ -49,6 +49,12 @@ import spark.skins.mobile320.assets.RadioButton_downSymbolSelected;
 import spark.skins.mobile320.assets.RadioButton_up;
 import spark.skins.mobile320.assets.RadioButton_upSymbol;
 import spark.skins.mobile320.assets.RadioButton_upSymbolSelected;
+import spark.skins.mobile480.assets.RadioButton_down;
+import spark.skins.mobile480.assets.RadioButton_downSymbol;
+import spark.skins.mobile480.assets.RadioButton_downSymbolSelected;
+import spark.skins.mobile480.assets.RadioButton_up;
+import spark.skins.mobile480.assets.RadioButton_upSymbol;
+import spark.skins.mobile480.assets.RadioButton_upSymbolSelected;
 import spark.skins.mobile640.assets.RadioButton_down;
 import spark.skins.mobile640.assets.RadioButton_downSymbol;
 import spark.skins.mobile640.assets.RadioButton_downSymbolSelected;
@@ -122,6 +128,23 @@ public class RadioButtonSkin extends SelectableButtonSkinBase
 				
 				break;
 			}
+            case DPIClassification.DPI_480:
+            {
+                upIconClass = spark.skins.mobile480.assets.RadioButton_up;
+                upSelectedIconClass = spark.skins.mobile480.assets.RadioButton_up;
+                downIconClass = spark.skins.mobile480.assets.RadioButton_down;
+                downSelectedIconClass = spark.skins.mobile480.assets.RadioButton_down;
+                upSymbolIconClass =  spark.skins.mobile480.assets.RadioButton_upSymbol;
+                downSymbolIconClass =  spark.skins.mobile480.assets.RadioButton_downSymbol;
+                upSymbolIconSelectedClass = spark.skins.mobile480.assets.RadioButton_upSymbolSelected;
+                downSymbolIconSelectedClass = spark.skins.mobile480.assets.RadioButton_downSymbolSelected;
+                
+                layoutGap = 30;
+                minWidth = 96;
+                minHeight = 96;
+                
+                break;
+            }
             case DPIClassification.DPI_320:
             {
                 upIconClass = spark.skins.mobile320.assets.RadioButton_up;

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77f4c997/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_down.fxg
----------------------------------------------------------------------
diff --git a/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_down.fxg b/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_down.fxg
index 7a2c8a6..7f3cfb3 100644
--- a/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_down.fxg
+++ b/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_down.fxg
@@ -25,7 +25,7 @@
           <SolidColor color="#FFFFFF"/>
         </fill>
       </Rect>
-      <Path x="4" y="4" data="M0 4C0 2 2 0 4 0L52 0C54 0 56 2 56 4L56 52C56 54 56 56 54 56L2 56C0 56 0 54 0 52L0 4Z">
+      <Path x="4" y="4" data="M0 4C0 2 2 0 4 0L52 0C54 0 56 2 56 4L56 52C56 54 56 56 54 56L2 56C0 56 0 54 0 52L0 4Z" scaleX="2.0" scaleY="2.0">
         <fill>
           <LinearGradient x="28" y="0" scaleX="56.0005" rotation="90">
             <GradientEntry ratio="0" alpha="0.1"/>
@@ -33,7 +33,7 @@
           </LinearGradient>
         </fill>
       </Path>
-      <Path x="4" y="4" data="M2 6C2 4 4 2 6 2L50 2C52 2 54 4 54 6L54 50C54 52 54 54 52 54L4 54C2 54 2 52 2 50L2 6ZM0 4 0 52C0 54 0 56 2 56L54 56C56 56 56 54 56 52L56 4C56 2 54 0 52 0L4 0C2 0 0 2 0 4Z">
+      <Path x="4" y="4" data="M2 6C2 4 4 2 6 2L50 2C52 2 54 4 54 6L54 50C54 52 54 54 52 54L4 54C2 54 2 52 2 50L2 6ZM0 4 0 52C0 54 0 56 2 56L54 56C56 56 56 54 56 52L56 4C56 2 54 0 52 0L4 0C2 0 0 2 0 4Z" scaleX="2.0" scaleY="2.0">
         <fill>
           <LinearGradient x="28" y="0" scaleX="56" rotation="90">
             <GradientEntry ratio="0" alpha="0.25"/>
@@ -41,7 +41,7 @@
           </LinearGradient>
         </fill>
       </Path>
-      <Path x="6" y="6" data="M2 6C2 4 4 2 6 2L46 2C48 2 50 4 50 6L50 46C50 48 50 50 48 50L4 50C2 50 2 48 2 46L2 6ZM0 4 0 48C0 50 0 52 2 52L50 52C52 52 52 50 52 48L52 4C52 2 50 0 48 0L4 0C2 0 0 2 0 4Z">
+      <Path x="6" y="6" data="M2 6C2 4 4 2 6 2L46 2C48 2 50 4 50 6L50 46C50 48 50 50 48 50L4 50C2 50 2 48 2 46L2 6ZM0 4 0 48C0 50 0 52 2 52L50 52C52 52 52 50 52 48L52 4C52 2 50 0 48 0L4 0C2 0 0 2 0 4Z" scaleX="2.0" scaleY="2.0">
         <fill>
           <LinearGradient x="26" y="0" scaleX="52" rotation="90">
             <GradientEntry ratio="0" alpha="0.1"/>
@@ -49,17 +49,17 @@
           </LinearGradient>
         </fill>
       </Path>
-      <Path x="2" y="2" alpha="0.7" data="M2 6C2 4 4 2 6 2L54 2C56 2 58 4 58 6L58 54C58 56 58 58 56 58L4 58C2 58 2 56 2 54L2 6ZM0 4 0 56C0 58 2 60 4 60L56 60C58 60 60 58 60 56L60 4C60 2 58 0 56 0L4 0C2 0 0 4 0 4Z">
+      <Path x="2" y="2" alpha="0.7" data="M2 6C2 4 4 2 6 2L54 2C56 2 58 4 58 6L58 54C58 56 58 58 56 58L4 58C2 58 2 56 2 54L2 6ZM0 4 0 56C0 58 2 60 4 60L56 60C58 60 60 58 60 56L60 4C60 2 58 0 56 0L4 0C2 0 0 4 0 4Z" scaleX="2.0" scaleY="2.0">
         <fill>
           <SolidColor/>
         </fill>
       </Path>
-      <Path alpha="0.06" data="M2 6C2 4 4 2 6 2L58 2C60 2 62 4 62 6L62 58C62 60 62 62 60 62L4 62C2 62 2 60 2 58L2 6ZM0 4 0 60C0 62 2 64 4 64L60 64C62 64 64 62 64 60L64 4C64 2 62 0 60 0L4 0C2 0 0 4 0 4Z">
+      <Path alpha="0.06" data="M2 6C2 4 4 2 6 2L58 2C60 2 62 4 62 6L62 58C62 60 62 62 60 62L4 62C2 62 2 60 2 58L2 6ZM0 4 0 60C0 62 2 64 4 64L60 64C62 64 64 62 64 60L64 4C64 2 62 0 60 0L4 0C2 0 0 4 0 4Z" scaleX="2.0" scaleY="2.0">
         <fill>
           <SolidColor color="#FFFFFF"/>
         </fill>
       </Path>
-      <Rect x="4" y="62" alpha="0.1" width="56" height="2">
+      <Rect x="4" y="62" alpha="0.1" width="56" height="2" scaleX="2.0" scaleY="2.0">
         <fill>
           <SolidColor color="#FFFFFF"/>
         </fill>

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77f4c997/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_downSymbol.fxg
----------------------------------------------------------------------
diff --git a/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_downSymbol.fxg b/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_downSymbol.fxg
index cfe76bf..581e99c 100644
--- a/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_downSymbol.fxg
+++ b/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_downSymbol.fxg
@@ -20,7 +20,7 @@
 
 
 <Graphic version="2.0" xmlns="http://ns.adobe.com/fxg/2008">
-      <Path x="4" y="10" data="M0 22 10 12 22 24 46 0 56 10 22 44 0 22Z">
+      <Path x="4" y="10" data="M0 22 10 12 22 24 46 0 56 10 22 44 0 22Z" scaleX="2.0" scaleY="2.0">
         <fill>
           <LinearGradient x="28" y="4" scaleX="44.0005" rotation="90">
             <GradientEntry ratio="0" color="#999999"/>
@@ -28,12 +28,12 @@
           </LinearGradient>
         </fill>
       </Path>
-      <Path x="4" y="10" alpha="0.6" data="M0 22 10 12 22 24 46 0 56 10">
+      <Path x="4" y="10" alpha="0.6" data="M0 22 10 12 22 24 46 0 56 10" scaleX="2.0" scaleY="2.0">
         <stroke>
           <SolidColorStroke weight="1" joints="bevel"/>
         </stroke>
       </Path>
-      <Path x="4" y="20" alpha="0.3" data="M0 12 22 34 56 0">
+      <Path x="4" y="20" alpha="0.3" data="M0 12 22 34 56 0" scaleX="2.0" scaleY="2.0">
         <stroke>
           <SolidColorStroke weight="1" joints="bevel" color="#FFFFFF"/>
         </stroke>

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77f4c997/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_downSymbolSelected.fxg
----------------------------------------------------------------------
diff --git a/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_downSymbolSelected.fxg b/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_downSymbolSelected.fxg
index d6843cc..5567e17 100644
--- a/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_downSymbolSelected.fxg
+++ b/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_downSymbolSelected.fxg
@@ -20,7 +20,7 @@
 
 
 <Graphic version="2.0" xmlns="http://ns.adobe.com/fxg/2008">
-      <Path x="4" y="10" data="M0 22 10 12 22 24 46 0 56 10 22 44 0 22Z">
+      <Path x="4" y="10" data="M0 22 10 12 22 24 46 0 56 10 22 44 0 22Z" scaleX="2.0" scaleY="2.0">
         <fill>
           <LinearGradient x="28" y="24" scaleX="48" rotation="90">
             <GradientEntry ratio="0" color="#5A5A5A"/>
@@ -28,14 +28,9 @@
           </LinearGradient>
         </fill>
       </Path>
-      <Path x="4" y="10" alpha="0.25" data="M0 22 10 12 22 24 46 0 56 10">
+      <Path x="4" y="10" alpha="0.25" data="M0 22 10 12 22 24 46 0 56 10" scaleX="2.0" scaleY="2.0">
         <stroke>
           <SolidColorStroke weight="1" joints="bevel" color="#FFFFFF"/>
         </stroke>
       </Path>
-      <Path x="4" y="20" alpha="0.7" data="M0 12 22 34 56 0">
-        <stroke>
-          <SolidColorStroke weight="1" joints="bevel"/>
-        </stroke>
-      </Path>
-  </Graphic>
\ No newline at end of file
+</Graphic>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77f4c997/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_up.fxg
----------------------------------------------------------------------
diff --git a/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_up.fxg b/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_up.fxg
index 716997d..7ee2bd6 100644
--- a/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_up.fxg
+++ b/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_up.fxg
@@ -20,7 +20,7 @@
 
 
 <Graphic version="2.0" xmlns="http://ns.adobe.com/fxg/2008">
-  <Path x="4" y="4" data="M0 4C0 2 2 0 4 0L52 0C54 0 56 2 56 4L56 52C56 54 56 56 54 56L2 56C0 56 0 54 0 52L0 4Z">
+  <Path x="4" y="4" data="M0 4C0 2 2 0 4 0L52 0C54 0 56 2 56 4L56 52C56 54 56 56 54 56L2 56C0 56 0 54 0 52L0 4Z" scaleX="2.0" scaleY="2.0">
     <fill>
       <LinearGradient x="28" y="8" scaleX="40.0004" rotation="90">
         <GradientEntry ratio="0" color="#FFFFFF" alpha="0.8"/>
@@ -28,7 +28,7 @@
       </LinearGradient>
     </fill>
   </Path>
-  <Path x="4" y="4" data="M2 6C2 4 4 2 6 2L50 2C52 2 54 4 54 6L54 50C54 52 54 54 52 54L4 54C2 54 2 52 2 50L2 6ZM0 4 0 52C0 54 0 56 2 56L54 56C56 56 56 54 56 52L56 4C56 2 54 0 52 0L4 0C2 0 0 2 0 4Z">
+  <Path x="4" y="4" data="M2 6C2 4 4 2 6 2L50 2C52 2 54 4 54 6L54 50C54 52 54 54 52 54L4 54C2 54 2 52 2 50L2 6ZM0 4 0 52C0 54 0 56 2 56L54 56C56 56 56 54 56 52L56 4C56 2 54 0 52 0L4 0C2 0 0 2 0 4Z" scaleX="2.0" scaleY="2.0">
     <fill>
       <LinearGradient x="28" y="0" scaleX="56.0005" rotation="90">
         <GradientEntry ratio="0" color="#FFFFFF" alpha="0.35"/>
@@ -36,22 +36,22 @@
       </LinearGradient>
     </fill>
   </Path>
-  <Path x="2" y="2" alpha="0.6" data="M2 6C2 4 4 2 6 2L54 2C56 2 58 4 58 6L58 54C58 56 58 58 56 58L4 58C2 58 2 56 2 54L2 6ZM0 4 0 56C0 58 2 60 4 60L56 60C58 60 60 58 60 56L60 4C60 2 58 0 56 0L4 0C2 0 0 4 0 4Z">
+  <Path x="2" y="2" alpha="0.6" data="M2 6C2 4 4 2 6 2L54 2C56 2 58 4 58 6L58 54C58 56 58 58 56 58L4 58C2 58 2 56 2 54L2 6ZM0 4 0 56C0 58 2 60 4 60L56 60C58 60 60 58 60 56L60 4C60 2 58 0 56 0L4 0C2 0 0 4 0 4Z" scaleX="2.0" scaleY="2.0">
     <fill>
       <SolidColor/>
     </fill>
   </Path>
-  <Path alpha="0.06" data="M2 6C2 4 4 2 6 2L58 2C60 2 62 4 62 6L62 58C62 60 62 62 60 62L4 62C2 62 2 60 2 58L2 6ZM0 4 0 60C0 62 2 64 4 64L60 64C62 64 64 62 64 60L64 4C64 2 62 0 60 0L4 0C2 0 0 4 0 4Z">
+  <Path alpha="0.06" data="M2 6C2 4 4 2 6 2L58 2C60 2 62 4 62 6L62 58C62 60 62 62 60 62L4 62C2 62 2 60 2 58L2 6ZM0 4 0 60C0 62 2 64 4 64L60 64C62 64 64 62 64 60L64 4C64 2 62 0 60 0L4 0C2 0 0 4 0 4Z" scaleX="2.0" scaleY="2.0">
     <fill>
       <SolidColor/>
     </fill>
   </Path>
-  <Rect x="6" y="4" alpha="0.15" width="52" height="2">
+  <Rect x="6" y="4" alpha="0.15" width="52" height="2" scaleX="2.0" scaleY="2.0">
     <fill>
       <SolidColor color="#FFFFFF"/>
     </fill>
   </Rect>
-  <Rect x="4" y="62" alpha="0.1" width="56" height="2">
+  <Rect x="4" y="62" alpha="0.1" width="56" height="2" scaleX="2.0" scaleY="2.0">
     <fill>
       <SolidColor/>
     </fill>

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77f4c997/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_upSymbol.fxg
----------------------------------------------------------------------
diff --git a/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_upSymbol.fxg b/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_upSymbol.fxg
index 29219e0..882c67f 100644
--- a/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_upSymbol.fxg
+++ b/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_upSymbol.fxg
@@ -20,7 +20,7 @@
 
 
 <Graphic version="2.0" xmlns="http://ns.adobe.com/fxg/2008">
-      <Path x="4" y="10" data="M0 22 10 12 22 24 46 0 56 10 22 44 0 22Z">
+      <Path x="4" y="10" data="M0 22 10 12 22 24 46 0 56 10 22 44 0 22Z" scaleX="2.0" scaleY="2.0">
         <fill>
           <LinearGradient x="28" y="24" scaleX="48" rotation="90">
             <GradientEntry ratio="0" color="#C8C8C8"/>
@@ -28,12 +28,12 @@
           </LinearGradient>
         </fill>
       </Path>
-      <Path x="4" y="10" alpha="0.5" data="M0 22 10 12 22 24 46 0 56 10">
+      <Path x="4" y="10" alpha="0.5" data="M0 22 10 12 22 24 46 0 56 10" scaleX="2.0" scaleY="2.0">
         <stroke>
           <SolidColorStroke weight="1" joints="bevel"/>
         </stroke>
       </Path>
-      <Path x="4" y="20" alpha="0.5" data="M0 12 22 34 56 0">
+      <Path x="4" y="20" alpha="0.5" data="M0 12 22 34 56 0" scaleX="2.0" scaleY="2.0">
         <stroke>
           <SolidColorStroke weight="1" joints="bevel" color="#FFFFFF"/>
         </stroke>

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77f4c997/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_upSymbolSelected.fxg
----------------------------------------------------------------------
diff --git a/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_upSymbolSelected.fxg b/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_upSymbolSelected.fxg
index 51566c6..53b8f18 100644
--- a/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_upSymbolSelected.fxg
+++ b/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/CheckBox_upSymbolSelected.fxg
@@ -20,7 +20,7 @@
 
 
 <Graphic version="2.0" xmlns="http://ns.adobe.com/fxg/2008">
-      <Path x="4" y="10" data="M0 22 10 12 22 24 46 0 56 10 22 44 0 22Z">
+      <Path x="4" y="10" data="M0 22 10 12 22 24 46 0 56 10 22 44 0 22Z" scaleX="2.0" scaleY="2.0">
         <fill>
           <LinearGradient x="28" y="12" scaleX="32" rotation="90">
             <GradientEntry ratio="0" color="#5A5A5A"/>
@@ -28,14 +28,9 @@
           </LinearGradient>
         </fill>
       </Path>
-      <Path x="4" y="10" alpha="0.7" data="M0 22 10 12 22 24 46 0 56 10">
+      <Path x="4" y="10" alpha="0.7" data="M0 22 10 12 22 24 46 0 56 10" scaleX="2.0" scaleY="2.0">
         <stroke>
           <SolidColorStroke weight="1" joints="bevel" color="#FFFFFF"/>
         </stroke>
       </Path>
-      <Path x="4" y="20" data="M0 12 22 34 56 0">
-        <stroke>
-          <SolidColorStroke weight="1" joints="bevel"/>
-        </stroke>
-      </Path>
 </Graphic>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77f4c997/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_down.fxg
----------------------------------------------------------------------
diff --git a/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_down.fxg b/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_down.fxg
index 4d7cdea..a2ff183 100644
--- a/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_down.fxg
+++ b/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_down.fxg
@@ -19,7 +19,7 @@
 -->
 <Graphic version="2.0" xmlns="http://ns.adobe.com/fxg/2008">
   
-      <Path data="M2 32C2 16 16 2 32 2 48 2 62 16 62 32 62 48 48 62 32 62 16 62 2 48 2 32ZM0 32C0 50 14 64 32 64 50 64 64 50 64 32 64 14 50 0 32 0 14 0 0 14 0 32Z">
+      <Path data="M2 32C2 16 16 2 32 2 48 2 62 16 62 32 62 48 48 62 32 62 16 62 2 48 2 32ZM0 32C0 50 14 64 32 64 50 64 64 50 64 32 64 14 50 0 32 0 14 0 0 14 0 32Z" scaleX="2.0" scaleY="2.0">
         <fill>
           <LinearGradient x="32" y="0" scaleX="64.0005" rotation="90">
             <GradientEntry ratio="0" color="#FFFFFF" alpha="0"/>
@@ -27,7 +27,7 @@
           </LinearGradient>
         </fill>
       </Path>
-      <Path x="4" y="4" data="M0 28C0 12 12 0 28 0 44 0 56 12 56 28 56 44 44 56 28 56 12 56 0 44 0 28Z">
+      <Path x="4" y="4" data="M0 28C0 12 12 0 28 0 44 0 56 12 56 28 56 44 44 56 28 56 12 56 0 44 0 28Z" scaleX="2.0" scaleY="2.0">
         <fill>
           <LinearGradient x="28" y="0" scaleX="56.0005" rotation="90">
             <GradientEntry ratio="0" alpha="0.109804"/>
@@ -35,12 +35,12 @@
           </LinearGradient>
         </fill>
       </Path>
-      <Path x="4" y="4" alpha="0.14902" data="M0 28C0 12 12 0 28 0 44 0 56 12 56 28 56 44 44 56 28 56 12 56 0 44 0 28Z">
+      <Path x="4" y="4" alpha="0.14902" data="M0 28C0 12 12 0 28 0 44 0 56 12 56 28 56 44 44 56 28 56 12 56 0 44 0 28Z" scaleX="2.0" scaleY="2.0">
         <stroke>
           <SolidColorStroke weight="1" caps="none"/>
         </stroke>
       </Path>
-      <Path x="2" y="2" alpha="0.65098" data="M2 30C2 14 14 2 30 2 46 2 58 14 58 30 58 46 46 58 30 58 14 58 2 46 2 30ZM0 30C0 46 14 60 30 60 46 60 60 46 60 30 60 14 46 0 30 0 14 0 0 14 0 30Z">
+      <Path x="2" y="2" alpha="0.65098" data="M2 30C2 14 14 2 30 2 46 2 58 14 58 30 58 46 46 58 30 58 14 58 2 46 2 30ZM0 30C0 46 14 60 30 60 46 60 60 46 60 30 60 14 46 0 30 0 14 0 0 14 0 30Z" scaleX="2.0" scaleY="2.0">
         <fill>
           <SolidColor/>
         </fill>

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77f4c997/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_downSymbol.fxg
----------------------------------------------------------------------
diff --git a/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_downSymbol.fxg b/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_downSymbol.fxg
index 6652cf1..7127005 100644
--- a/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_downSymbol.fxg
+++ b/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_downSymbol.fxg
@@ -18,12 +18,12 @@
 
 -->
 <Graphic version="2.0" xmlns="http://ns.adobe.com/fxg/2008">
-    <Path x="16" y="16" data="M0 16C0 8 8 0 16 0 24 0 32 8 32 16 32 24 24 32 16 32 8 32 0 24 0 16Z">
+    <Path x="30" y="30" data="M0 16C0 8 8 0 16 0 24 0 32 8 32 16 32 24 24 32 16 32 8 32 0 24 0 16Z" scaleX="2.0" scaleY="2.0">
     	<fill>
 		    <SolidColor color="#646464"/>
     	</fill>
 	</Path>
-    <Path x="18" y="18" data="M0 14C0 6 6 0 14 0 22 0 28 6 28 14 28 22 22 28 14 28 6 28 0 22 0 14Z">
+    <Path x="34" y="34" data="M0 14C0 6 6 0 14 0 22 0 28 6 28 14 28 22 22 28 14 28 6 28 0 22 0 14Z" scaleX="2.0" scaleY="2.0">
     	<fill>
     		<LinearGradient x="14" y="0" scaleX="28" rotation="90">
     			<GradientEntry ratio="0" color="#787878"/>

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77f4c997/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_downSymbolSelected.fxg
----------------------------------------------------------------------
diff --git a/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_downSymbolSelected.fxg b/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_downSymbolSelected.fxg
index e425a8b..f877fd8 100644
--- a/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_downSymbolSelected.fxg
+++ b/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_downSymbolSelected.fxg
@@ -18,12 +18,12 @@
 
 -->
 <Graphic version="2.0" xmlns="http://ns.adobe.com/fxg/2008">
-    <Path x="16" y="16" data="M0 16C0 8 8 0 16 0 24 0 32 8 32 16 32 24 24 32 16 32 8 32 0 24 0 16Z">
+    <Path x="30" y="30" data="M0 16C0 8 8 0 16 0 24 0 32 8 32 16 32 24 24 32 16 32 8 32 0 24 0 16Z" scaleX="2.0" scaleY="2.0">
         <fill>
         	<SolidColor color="#323232"/>
         </fill>
     </Path>
-    <Path x="18" y="18" data="M0 14C0 6 6 0 14 0 22 0 28 6 28 14 28 22 22 28 14 28 6 28 0 22 0 14Z">
+    <Path x="34" y="34" data="M0 14C0 6 6 0 14 0 22 0 28 6 28 14 28 22 22 28 14 28 6 28 0 22 0 14Z" scaleX="2.0" scaleY="2.0">
         <fill>
             <LinearGradient x="14" y="0" scaleX="30" rotation="90">
                 <GradientEntry ratio="0" color="#464646"/>

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77f4c997/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_up.fxg
----------------------------------------------------------------------
diff --git a/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_up.fxg b/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_up.fxg
index f6ea86f..da0d0f0 100644
--- a/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_up.fxg
+++ b/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_up.fxg
@@ -19,7 +19,7 @@
 -->
 <Graphic version="2.0" xmlns="http://ns.adobe.com/fxg/2008">
   
-      <Path data="M2 32C2 16 16 2 32 2 48 2 62 16 62 32 62 48 48 62 32 62 16 62 2 48 2 32ZM0 32C0 50 14 64 32 64 50 64 64 50 64 32 64 14 50 0 32 0 14 0 0 14 0 32Z">
+      <Path x="-2" y="-2" data="M2 32C2 16 16 2 32 2 48 2 62 16 62 32 62 48 48 62 32 62 16 62 2 48 2 32ZM0 32C0 50 14 64 32 64 50 64 64 50 64 32 64 14 50 0 32 0 14 0 0 14 0 32Z" scaleX="2.0" scaleY="2.0">
         <fill>
           <LinearGradient x="32" y="0" scaleX="64.0005" rotation="90">
             <GradientEntry ratio="0" alpha="0"/>
@@ -27,12 +27,12 @@
           </LinearGradient>
         </fill>
       </Path>
-      <Path x="2" y="2" alpha="0.6" data="M2 30C2 14 14 2 30 2 46 2 58 14 58 30 58 46 46 58 30 58 14 58 2 46 2 30ZM0 30C0 46 14 60 30 60 46 60 60 46 60 30 60 14 46 0 30 0 14 0 0 14 0 30Z">
+      <Path x="2" y="2" alpha="0.6" data="M2 30C2 14 14 2 30 2 46 2 58 14 58 30 58 46 46 58 30 58 14 58 2 46 2 30ZM0 30C0 46 14 60 30 60 46 60 60 46 60 30 60 14 46 0 30 0 14 0 0 14 0 30Z" scaleX="2.0" scaleY="2.0">
         <fill>
           <SolidColor/>
         </fill>
       </Path>
-      <Path x="4" y="4" data="M0 28C0 12 12 0 28 0 44 0 56 12 56 28 56 44 44 56 28 56 12 56 0 44 0 28Z">
+      <Path x="4" y="4" data="M0 28C0 12 12 0 28 0 44 0 56 12 56 28 56 44 44 56 28 56 12 56 0 44 0 28Z" scaleX="2.0" scaleY="2.0">
         <fill>
           <LinearGradient x="28" y="8" scaleX="26.0002" rotation="90">
             <GradientEntry ratio="0" color="#FFFFFF" alpha="0.8"/>

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77f4c997/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_upSymbol.fxg
----------------------------------------------------------------------
diff --git a/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_upSymbol.fxg b/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_upSymbol.fxg
index a9e5b14..087ea37 100644
--- a/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_upSymbol.fxg
+++ b/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_upSymbol.fxg
@@ -18,12 +18,12 @@
 
 -->
 <Graphic version="2.0" xmlns="http://ns.adobe.com/fxg/2008">
-    <Path x="16" y="16" data="M0 16C0 8 8 0 16 0 24 0 32 8 32 16 32 24 24 32 16 32 8 32 0 24 0 16Z">
+    <Path x="30" y="30" data="M0 16C0 8 8 0 16 0 24 0 32 8 32 16 32 24 24 32 16 32 8 32 0 24 0 16Z" scaleX="2.0" scaleY="2.0">
         <fill>
         	<SolidColor color="#969696"/>
         </fill>
     </Path>
-    <Path x="18" y="18" data="M0 14C0 6 6 0 14 0 22 0 28 6 28 14 28 22 22 28 14 28 6 28 0 22 0 14Z">
+    <Path x="34" y="34" data="M0 14C0 6 6 0 14 0 22 0 28 6 28 14 28 22 22 28 14 28 6 28 0 22 0 14Z" scaleX="2.0" scaleY="2.0">
         <fill>
             <LinearGradient x="14" y="0" scaleX="20" rotation="90">
                 <GradientEntry ratio="0" color="#999999"/>

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77f4c997/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_upSymbolSelected.fxg
----------------------------------------------------------------------
diff --git a/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_upSymbolSelected.fxg b/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_upSymbolSelected.fxg
index 449affb..0dc0ea7 100644
--- a/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_upSymbolSelected.fxg
+++ b/frameworks/projects/mobiletheme/src/spark/skins/mobile480/assets/RadioButton_upSymbolSelected.fxg
@@ -18,12 +18,12 @@
 
 -->
 <Graphic version="2.0" xmlns="http://ns.adobe.com/fxg/2008">
-	<Path x="16" y="16" data="M0 16C0 8 8 0 16 0 24 0 32 8 32 16 32 24 24 32 16 32 8 32 0 24 0 16Z">
+	<Path x="30" y="30" data="M0 16C0 8 8 0 16 0 24 0 32 8 32 16 32 24 24 32 16 32 8 32 0 24 0 16Z" scaleX="2.0" scaleY="2.0">
     	<fill>
     		<SolidColor color="#323232"/>
         </fill>
 	</Path>
-    <Path x="18" y="18" data="M0 14C0 6 6 0 14 0 22 0 28 6 28 14 28 22 22 28 14 28 6 28 0 22 0 14Z">
+    <Path x="34" y="34" data="M0 14C0 6 6 0 14 0 22 0 28 6 28 14 28 22 22 28 14 28 6 28 0 22 0 14Z" scaleX="2.0" scaleY="2.0">
     	<fill>
         	<LinearGradient x="14" y="0" scaleX="30" rotation="90">
             	<GradientEntry ratio="0" color="#5A5A5A"/>

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77f4c997/frameworks/projects/mobiletheme/src/spark/skins/mobile640/assets/RadioButton_down.fxg
----------------------------------------------------------------------
diff --git a/frameworks/projects/mobiletheme/src/spark/skins/mobile640/assets/RadioButton_down.fxg b/frameworks/projects/mobiletheme/src/spark/skins/mobile640/assets/RadioButton_down.fxg
index a2ff183..b515ce4 100644
--- a/frameworks/projects/mobiletheme/src/spark/skins/mobile640/assets/RadioButton_down.fxg
+++ b/frameworks/projects/mobiletheme/src/spark/skins/mobile640/assets/RadioButton_down.fxg
@@ -19,7 +19,7 @@
 -->
 <Graphic version="2.0" xmlns="http://ns.adobe.com/fxg/2008">
   
-      <Path data="M2 32C2 16 16 2 32 2 48 2 62 16 62 32 62 48 48 62 32 62 16 62 2 48 2 32ZM0 32C0 50 14 64 32 64 50 64 64 50 64 32 64 14 50 0 32 0 14 0 0 14 0 32Z" scaleX="2.0" scaleY="2.0">
+      <Path x="-2" y="-2" data="M2 32C2 16 16 2 32 2 48 2 62 16 62 32 62 48 48 62 32 62 16 62 2 48 2 32ZM0 32C0 50 14 64 32 64 50 64 64 50 64 32 64 14 50 0 32 0 14 0 0 14 0 32Z" scaleX="2.0" scaleY="2.0">
         <fill>
           <LinearGradient x="32" y="0" scaleX="64.0005" rotation="90">
             <GradientEntry ratio="0" color="#FFFFFF" alpha="0"/>