You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@flex.apache.org by Weber Jan <Ja...@dallmeier.com> on 2015/06/05 14:03:25 UTC

Faulty scrollbar appearance with latest Flex SDK 4.14.1 on iOS app

Hi,

I just saw that the scrollbars appearance in our iOS app changed with the latest Flex SDK 4.14.1 (in debug mode locally everything looks ok).
The device I'm seeing this is an iPad Air with latest iOS 8.3. I'm using the Mobile Theme with mobile.swc and mobilecomponents.swc.

Affected component are s:Scroller, s:List and mx:Accordion.
The horizontal scrollbars are now black and the vertical scrollbars are white. With SDK 4.13 they accepted the style "chomeColor" which is defined in a CSS file.


s|VScrollBar, s|HScrollBar, ScrollBar, s|Scroller, s|ScrollBarBase
{
       chromeColor: #005aa4;
}


Also, the roundes corners of the scrollbars are gone.
Did anyone else encountered this issue or has any clue, what may cause this appearance?


Thanks,
Jan

AW: Faulty scrollbar appearance with latest Flex SDK 4.14.1 on iOS app

Posted by Weber Jan <Ja...@dallmeier.com>.
Many thanks for your advice!
I will give this a go for the next update of the app.



-----Ursprüngliche Nachricht-----
Von: omuppi1@gmail.com [mailto:omuppi1@gmail.com] Im Auftrag von OmPrakash Muppirala
Gesendet: Donnerstag, 11. Juni 2015 00:43
An: users@flex.apache.org
Betreff: Re: Faulty scrollbar appearance with latest Flex SDK 4.14.1 on iOS app

In Flex 4.14+ we are defaulting to iOS7/8 skins.  I believe the default skin for the Scrollbars were changed as part of this.

More details here:
https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=50856172

To get back the original skin, simply add this:
HScrollBar
{
skinClass: ClassReference("spark.skins.mobile.HScrollBarSkin");
}

VScrollBar
{
skinClass: ClassReference("spark.skins.mobile.VScrollBarSkin");
}

in your application's css file.  You can add the other supported style values here as well.

Thanks,
Om

On Fri, Jun 5, 2015 at 5:03 AM, Weber Jan <Ja...@dallmeier.com> wrote:

> Hi,
>
> I just saw that the scrollbars appearance in our iOS app changed with 
> the latest Flex SDK 4.14.1 (in debug mode locally everything looks ok).
> The device I'm seeing this is an iPad Air with latest iOS 8.3. I'm 
> using the Mobile Theme with mobile.swc and mobilecomponents.swc.
>
> Affected component are s:Scroller, s:List and mx:Accordion.
> The horizontal scrollbars are now black and the vertical scrollbars 
> are white. With SDK 4.13 they accepted the style "chomeColor" which is 
> defined in a CSS file.
>
>
> s|VScrollBar, s|HScrollBar, ScrollBar, s|Scroller, s|ScrollBarBase
> {
>        chromeColor: #005aa4;
> }
>
>
> Also, the roundes corners of the scrollbars are gone.
> Did anyone else encountered this issue or has any clue, what may cause 
> this appearance?
>
>
> Thanks,
> Jan
>

Re: Faulty scrollbar appearance with latest Flex SDK 4.14.1 on iOS app

Posted by OmPrakash Muppirala <bi...@gmail.com>.
Details here: http://flex.apache.org/community-mailinglists.html

Thanks,
Om

On Wed, Jun 10, 2015 at 4:28 PM, <be...@connective.com.au> wrote:

> How do I get taken off this list?
>
>
> On 2015-06-11 08:42, OmPrakash Muppirala wrote:
>
>> In Flex 4.14+ we are defaulting to iOS7/8 skins.  I believe the default
>> skin for the Scrollbars were changed as part of this.
>>
>> More details here:
>> https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=50856172
>>
>> To get back the original skin, simply add this:
>> HScrollBar
>> {
>> skinClass: ClassReference("spark.skins.mobile.HScrollBarSkin");
>> }
>>
>> VScrollBar
>> {
>> skinClass: ClassReference("spark.skins.mobile.VScrollBarSkin");
>> }
>>
>> in your application's css file.  You can add the other supported style
>> values here as well.
>>
>> Thanks,
>> Om
>>
>> On Fri, Jun 5, 2015 at 5:03 AM, Weber Jan <Ja...@dallmeier.com>
>> wrote:
>>
>>  Hi,
>>>
>>> I just saw that the scrollbars appearance in our iOS app changed with the
>>> latest Flex SDK 4.14.1 (in debug mode locally everything looks ok).
>>> The device I'm seeing this is an iPad Air with latest iOS 8.3. I'm using
>>> the Mobile Theme with mobile.swc and mobilecomponents.swc.
>>>
>>> Affected component are s:Scroller, s:List and mx:Accordion.
>>> The horizontal scrollbars are now black and the vertical scrollbars are
>>> white. With SDK 4.13 they accepted the style "chomeColor" which is
>>> defined
>>> in a CSS file.
>>>
>>>
>>> s|VScrollBar, s|HScrollBar, ScrollBar, s|Scroller, s|ScrollBarBase
>>> {
>>>        chromeColor: #005aa4;
>>> }
>>>
>>>
>>> Also, the roundes corners of the scrollbars are gone.
>>> Did anyone else encountered this issue or has any clue, what may cause
>>> this appearance?
>>>
>>>
>>> Thanks,
>>> Jan
>>>
>>>
>

Re: Faulty scrollbar appearance with latest Flex SDK 4.14.1 on iOS app

Posted by be...@connective.com.au.
How do I get taken off this list?

On 2015-06-11 08:42, OmPrakash Muppirala wrote:
> In Flex 4.14+ we are defaulting to iOS7/8 skins.  I believe the default
> skin for the Scrollbars were changed as part of this.
> 
> More details here:
> https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=50856172
> 
> To get back the original skin, simply add this:
> HScrollBar
> {
> skinClass: ClassReference("spark.skins.mobile.HScrollBarSkin");
> }
> 
> VScrollBar
> {
> skinClass: ClassReference("spark.skins.mobile.VScrollBarSkin");
> }
> 
> in your application's css file.  You can add the other supported style
> values here as well.
> 
> Thanks,
> Om
> 
> On Fri, Jun 5, 2015 at 5:03 AM, Weber Jan <Ja...@dallmeier.com> 
> wrote:
> 
>> Hi,
>> 
>> I just saw that the scrollbars appearance in our iOS app changed with 
>> the
>> latest Flex SDK 4.14.1 (in debug mode locally everything looks ok).
>> The device I'm seeing this is an iPad Air with latest iOS 8.3. I'm 
>> using
>> the Mobile Theme with mobile.swc and mobilecomponents.swc.
>> 
>> Affected component are s:Scroller, s:List and mx:Accordion.
>> The horizontal scrollbars are now black and the vertical scrollbars 
>> are
>> white. With SDK 4.13 they accepted the style "chomeColor" which is 
>> defined
>> in a CSS file.
>> 
>> 
>> s|VScrollBar, s|HScrollBar, ScrollBar, s|Scroller, s|ScrollBarBase
>> {
>>        chromeColor: #005aa4;
>> }
>> 
>> 
>> Also, the roundes corners of the scrollbars are gone.
>> Did anyone else encountered this issue or has any clue, what may cause
>> this appearance?
>> 
>> 
>> Thanks,
>> Jan
>> 


Re: Faulty scrollbar appearance with latest Flex SDK 4.14.1 on iOS app

Posted by OmPrakash Muppirala <bi...@gmail.com>.
In Flex 4.14+ we are defaulting to iOS7/8 skins.  I believe the default
skin for the Scrollbars were changed as part of this.

More details here:
https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=50856172

To get back the original skin, simply add this:
HScrollBar
{
skinClass: ClassReference("spark.skins.mobile.HScrollBarSkin");
}

VScrollBar
{
skinClass: ClassReference("spark.skins.mobile.VScrollBarSkin");
}

in your application's css file.  You can add the other supported style
values here as well.

Thanks,
Om

On Fri, Jun 5, 2015 at 5:03 AM, Weber Jan <Ja...@dallmeier.com> wrote:

> Hi,
>
> I just saw that the scrollbars appearance in our iOS app changed with the
> latest Flex SDK 4.14.1 (in debug mode locally everything looks ok).
> The device I'm seeing this is an iPad Air with latest iOS 8.3. I'm using
> the Mobile Theme with mobile.swc and mobilecomponents.swc.
>
> Affected component are s:Scroller, s:List and mx:Accordion.
> The horizontal scrollbars are now black and the vertical scrollbars are
> white. With SDK 4.13 they accepted the style "chomeColor" which is defined
> in a CSS file.
>
>
> s|VScrollBar, s|HScrollBar, ScrollBar, s|Scroller, s|ScrollBarBase
> {
>        chromeColor: #005aa4;
> }
>
>
> Also, the roundes corners of the scrollbars are gone.
> Did anyone else encountered this issue or has any clue, what may cause
> this appearance?
>
>
> Thanks,
> Jan
>