Re: Android 6.0

2016-04-13 Thread Jonathan Christian
in the pop ups and context menus. > > Why this is happening in AIR is odd though since FTE is supposed to align > the text flush against the top of the label. I would also try different > fonts as well. > > On Tue, Apr 12, 2016 at 3:52 PM, Jonathan Christian < > jcisinthehous

Re: Android 6.0

2016-04-12 Thread Jonathan Christian
, Jonathan Christian < [hidden email]> wrote: > All, > > I have been noticing a weird behavior that didn't exist on AIR Android > mobile apps prior to 6.0 (Marshmallow) > > The biggest difference is when using the top property on something s

Android 6.0

2016-04-12 Thread Jonathan Christian
All, I have been noticing a weird behavior that didn't exist on AIR Android mobile apps prior to 6.0 (Marshmallow) The biggest difference is when using the top property on something such as groups, labels, etc headingLabel.top = 6; I've included screenshots of what the ap

Re: Disable Scroller bounce and pull on spark List

2015-09-09 Thread Jonathan Christian
Got my question answered here http://stackoverflow.com/questions/32482765/add-extended-scroller-to-extended-spark-list-in-flex/32486502#32486502 Jonathan Christian wrote > Does anyone know how to add a custom Scroller to a Flex List component > written in Action Script? > > I ha

Disable Scroller bounce and pull on spark List

2015-09-08 Thread Jonathan Christian
Does anyone know how to add a customer Scroller to a Flex List component written in Action Script? I have a list in mxml called that is extended by a custom list component InfiniteScrollList.as public class InfiniteScrollList extends List { private var lastScro

Testflight with AIR?

2015-06-12 Thread Jonathan Christian
I was reading about the new Build Number in AIR iOS with AIR 18 and noticed it talked about TestFlight right in the release notes. I have recently been uploading builds to the app store (usually with AIR 17) but my AIR apps are never been available for test flight testing in iTunes connect. Is ther

Re: iOS 8 - Black status text despite UIStatusBarStyleLightContent being set

2014-10-21 Thread Jonathan Christian
Does your app scale properly with the launch images? Could I see how it looks on your iPhone 6? "Thanks Jonathan, that works wonders!" -- View this message in context: http://apache-flex-users.246.n4.nabble.com/iOS-8-Black-status-text-despite-UIStatusBarStyleLightContent-being-set-tp8292p8

Re: iOS 8 - Black status text despite UIStatusBarStyleLightContent being set

2014-10-20 Thread Jonathan Christian
"Here is an image of one of my apps file structure, I added the launch images under the "src" folder " Hi Jonathan, How did you setup the proper launch images? I'm having difficulty gleaning how to do this from the docs.

Re: iOS 8 - Black status text despite UIStatusBarStyleLightContent being set

2014-10-20 Thread Jonathan Christian
Hey vansmith Have you had any luck with the latest AIR 15 beta off Adobe Labs? I have a discussion going on AIRs website about the same problem you are experiencing -https://forums.adobe.com/thread/1612387 I know changing to AIR 15 and using the correct launch images will correct your status ba

Re: Simulate iPhone 6 & 6 Plus in iOS Simulator

2014-10-02 Thread Jonathan Christian
I found an answer to my question here - https://forums.adobe.com/thread/1582545 "The only way i found for Xcode6 with Air 15.0.0274 is to manually install the apps in the same place as the included native ones . Go to the xcode directory below in applications:- /Applications/Xcode.app/Contents/

Simulate iPhone 6 & 6 Plus in iOS Simulator

2014-10-01 Thread Jonathan Christian
Hello Apache Users, I'm running the latest Adobe AIR 15 with Apache Flex 4.13 on a Mac with Flash Builder. Is there a way to simulate the new iPhones in the iOS simulator? I have tried to change the simulated device after a successful deploy (it defaults at an iPhone 5 and I swapped it to a 6 an

RE: TextInput - no soft keyboard in iOS

2014-06-16 Thread Jonathan Christian
Should the text be centered in the textinput box? -- View this message in context: http://apache-flex-users.246.n4.nabble.com/TextInput-no-soft-keyboard-in-iOS-tp6844p6854.html Sent from the Apache Flex Users mailing

RE: TextInput - no soft keyboard in iOS

2014-06-16 Thread Jonathan Christian
Shouldn't the font in the textinput be centered? -- View this message in context: http://apache-flex-users.246.n4.nabble.com/TextInput-no-soft-keyboard-in-iOS-tp6844p6852.html Sent from the Apache Flex Users mailing

RE: TextInput - no soft keyboard in iOS

2014-06-16 Thread Jonathan Christian
Thanks Maurice, saved me again! I'm setting borderVisible="false" because it will go back to rounded corners if I set it to true, can I set up a border using the modified spark.skins.mobile.ScrollingStageTextInputSkin ? public function MySquareTextInputSkin() { super();

TextInput - no soft keyboard in iOS

2014-06-13 Thread Jonathan Christian
Hey Apache friends, I'm a little perplexed on this issue I am having. The ultimate goal is to have square corners on a textinput box in a mobile flex project using Flex 4.12.1 and AIR 13. I have a typical spark textinput box that uses spark.components.textInput () - works fine But when I a

RE: MobileGrid Skins

2014-04-02 Thread Jonathan Christian
Thanks Maurice I was able to set up a sharp looking Mobile Grid header, one thing I noticed is when you select the second row down and try to sort the data - any rows above it flicker to the change, and there is no flickering when the last row is selected. Just a little peculiar so I thought I'd l

Re: MobileGrid Skins

2014-04-01 Thread Jonathan Christian
ml-node+s246n5875...@n4.nabble.com> wrote: > Ok I will have a look at it. > > >and is making the columns not selectable possible? > You mean, disable sorting on header click ? > > Maurice > > -Message d'origine- > De : Jonathan Christian [mailto:[h

RE: MobileGrid Skins

2014-04-01 Thread Jonathan Christian
Yeah you're right, I zipped the wrong project sorry! here is the new link - https://drive.google.com/file/d/0B4quPL0V-7sBS3ZIbl83eEJTU2c/edit?usp=sharing I tried editing the headerGroup in the skin and was only able to remove the shadow, and using CSS I was able to set up a white column color with

RE: MobileGrid Skins

2014-03-31 Thread Jonathan Christian
Here - https://drive.google.com/file/d/0B4quPL0V-7sBUjREOEdoMjUxbXc/edit?usp=sharing I am only using the CSS as a stylename at the moment, as I am not sure how to use the Mobile Grid skin class -- View this message in context: http://apache-flex-users.246.n4.nabble.com/MobileGrid-Skins-tp5

RE: MobileGrid Skins

2014-03-31 Thread Jonathan Christian
Thanks Maurice, I have attempted to override the CSS and apply the style /.Mobileg/ to the MobileGrid, and /.MobileGridHeader/ to the MobileGridColumn. This approach seems to partially work - any CSS in the header doesn't seem to take any effect. Am I doing this correctly? @namespac

MobileGrid Skins

2014-03-24 Thread Jonathan Christian
Hey All, Just wondering if there is an example of a skinned . has someone developed one? Im trying to theme each column with a white background with black text and the same appearance for the column headers. Any help would be great. thanks. -- View this message in context: http://apache-flex-

Flex Gauge Component

2014-03-03 Thread Jonathan Christian
Does anyone know of a single component or software package that handles a gauge? The only good examples I've found is AnyCharts software apckage and this link -https://github.com/PEZ/FlexGauge If someone has come across a component that looks similar or knows how to create a component like the pi

RE: StageTextInputSkin - Text does not move in scroller

2014-01-10 Thread Jonathan Christian

RE: StageTextInputSkin - Text does not move in scroller

2014-01-10 Thread Jonathan Christian
I installed the nightly build (4.12) along with the air 4.0 sdk, no difference in my app. Any other ideas? -- View this message in context: http://apache-flex-users.246.n4.nabble.com/StageTextInputSkin-Text-does-not-move-in-scroller-tp4429p4436.html Sent from the Apache Flex Users mailing l

Re: StageTextInputSkin - Text does not move in scroller

2014-01-10 Thread Jonathan Christian
Would that be included in the nightly builds -- View this message in context: http://apache-flex-users.246.n4.nabble.com/StageTextInputSkin-Text-does-not-move-in-scroller-tp4429p4432.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

StageTextInputSkin - Text does not move in scroller

2014-01-10 Thread Jonathan Christian
I'm using the spark.skins.mobile.StageTextInputSkin in my mobile application. As you can see from the screenshot the text does not stay in its input boxes when scrolling up and down the view when wrapped in a Scroller