Return-Path: X-Original-To: apmail-flex-users-archive@www.apache.org Delivered-To: apmail-flex-users-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 91AA517E2D for ; Wed, 18 Mar 2015 15:14:21 +0000 (UTC) Received: (qmail 76956 invoked by uid 500); 18 Mar 2015 15:14:17 -0000 Delivered-To: apmail-flex-users-archive@flex.apache.org Received: (qmail 76924 invoked by uid 500); 18 Mar 2015 15:14:17 -0000 Mailing-List: contact users-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@flex.apache.org Delivered-To: mailing list users@flex.apache.org Received: (qmail 76912 invoked by uid 99); 18 Mar 2015 15:14:17 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Mar 2015 15:14:17 +0000 X-ASF-Spam-Status: No, hits=2.5 required=5.0 tests=FREEMAIL_ENVFROM_END_DIGIT,SPF_SOFTFAIL,URI_HEX X-Spam-Check-By: apache.org Received-SPF: softfail (nike.apache.org: transitioning domain of anash13@gmail.com does not designate 162.253.133.43 as permitted sender) Received: from [162.253.133.43] (HELO mwork.nabble.com) (162.253.133.43) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Mar 2015 15:13:52 +0000 Received: from mjoe.nabble.com (unknown [162.253.133.57]) by mwork.nabble.com (Postfix) with ESMTP id 09A8017BDFA5 for ; Wed, 18 Mar 2015 08:13:02 -0700 (PDT) Date: Wed, 18 Mar 2015 08:02:49 -0700 (PDT) From: quick6black To: users@flex.apache.org Message-ID: <1426690969312-9818.post@n4.nabble.com> In-Reply-To: References: <1426642738289-9808.post@n4.nabble.com> Subject: Re: weird Radio Button UI with mobile project using 4.14 SDK? MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org You can use the old skin by using this in your css or reference your own radio button skin. @namespace "library://ns.adobe.com/flex/spark"; RadioButton { skinClass: ClassReference("spark.skins.mobile.RadioButtonSkin"); } I disagree that it is "so ugly" the intent of the skin is to replicate the Android 4x radio button. If you like the style of the Android 4x but do not like the white background ring you can change the background color by doing I created a radio button that replicates the android material design which is similar to Om's Android 4x button. You can download here and update your css using this RadioButton { skinClass: ClassReference("spark.skins.android5.RadioButtonSkin"); backgroundAlpha: 0; /*background alpha*/ chromeColor: #000000; /*background color*/ selectColor: #009688; unselectColor: #6D6D6D; } -- View this message in context: http://apache-flex-users.2333346.n4.nabble.com/weird-Radio-Button-UI-with-mobile-project-using-4-14-SDK-tp9808p9818.html Sent from the Apache Flex Users mailing list archive at Nabble.com.