Re: [flexcoders] ErrorString and borderColor of controls not in sink
Have you tried calling either textArea.invalidateProperties() or textArea.invalidateDisplayList()? Im pretty sure that if you do that right after you set the error string, it will reset the border color Doug On Thu, May 30, 2013 at 12:03 PM, ilikeflex wrote: > ** > > > Hi > > When errorString of the component is any value(ex 'Enter the value') then > the borderColor of the component changes to 'red'. But when you make the > errorString="" it does not change the borderColor of the component back for > the first time. > > It change when the control lose focus. > > How can we make the border color to original when using errorString="" for > the first time even the control does not loose focus. > > I have attached sample of the problem. > > Any pointers.. > > > http://ns.adobe.com/mxml/2009"; > xmlns:s="library://ns.adobe.com/flex/spark" > xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600"> > > > > > > > > > > > > change="textarea1_changeHandler(event)" > /> > > > > Thanks > ilikeflex > > >
Re: [flexcoders] flex frustration...
By the way, are you using Flex's network monitor? Sometimes Ive seen that cause errors like this On Fri, Mar 15, 2013 at 5:00 AM, Paul A. wrote: > ** > > > On 15/03/2013 07:34, ZIONIST wrote: > > hi guys one moment my app was working fine and the next i get this error > > > > faultCode:Channel.Call.Failed faultString:'error' > faultDetail:'NetConnection.Call.Failed: HTTP: Status 500' > > > > > > any ideas on how to solve this ridiculous flex nonsense of an error? > http://www.checkupdown.com/status/E500.html > > >
Re: [flexcoders] Re: filtering an array collection using 2 or 3 textinputs
You may want to look up applying dynamic filters to array collections,as well as clearing them and applying multiple sort fields. Can't give you better direction without s clearer idea of what exactly you are trying to do Doug On Mar 5, 2013 9:33 AM, "ZIONIST" wrote: > ** > > > i would like to use the textinputs to filter the array collection using > different parameters. > > >
Re: [flexcoders] Re: filtering an array collection using 2 or 3 textinputs
Can you give more details on what you are trying to do? Use text inputs how? Doug On Mar 5, 2013 1:06 AM, "ZIONIST" wrote: > ** > > > any help guys? am really stuck. > > >
Re: [flexcoders] Re: Mobile App Entitlements
Isnt it some UID that apple uses for its submission process? Im talking a little out of my depth here, but the one time I did this (for a class), it involved compiling the app as native XCode, then opening it in XCode and going through the entitlement process. Maybe look up how they do ad hoc distribution these days? Heres a link to get you started: http://stackoverflow.com/questions/12698506/how-can-i-add-an-entitlements-file-to-an-xcode-4-5-project On Wed, Feb 13, 2013 at 10:18 AM, Jake Churchill wrote: > ** > > > Anyone??? Anything??? > > > On Mon, Feb 11, 2013 at 12:54 PM, Jake Churchill wrote: > >> Guys, >> >> I have a mobile application that was created last year using FlashBuilder >> 4.6 (AIR 3.4). It's a pretty basic app, in that it just interacts with >> data from a server. There is one view that interacts with CameraRoll and >> the CameraUI, but that's it. >> >> The initial build of the app went through Apple's approval process >> successfully. I have since upgraded to FlashBuilder 4.7 and set it up to >> use the sdk with the AIR 3.4 (default is 3.1 I think). >> >> A bug was found in the app which required a simple test to see if an >> ArrayCollection existed, if not I created a blank one. I re-compiled and >> re-submitted the new .ipa and now Apple is coming back saying an >> Entitlement is missing: >> >> *Missing Push Notification Entitlement - Your app appears to register >> with the Apple Push Notification service, but the app signature's >> entitlements do not include the "aps-environment" entitlement. If your app >> uses the Apple Push Notification service, make sure your App ID is enabled >> for Push Notification in the Provisioning Portal, and resubmit after >> signing your app with a Distribution provisioning profile that includes the >> "aps-environment" entitlement. >> * >> >> I've been searching for solutions to this or other people with the same >> problem but have not found anything. I'm wondering if Flashbuilder 4.7 has >> a default entitlement somewhere that's being compiled into the application. >> I'm not sure that's the case because in the binary area in itunes connect, >> the entitlements section is as follows: >> >> *MY APP NAME* >> get-task-allow: false >> application-identifier: MY APP PACKAGE >> >> In the mean time, I've still got FlashBuilder 4.6 so I'm going to try to >> compile the app there and submit. However, if Apple is saying it appears >> the app registers with the Apple Push Notification service, I'm at a loss >> because we don't use that for anything. >> >> Any help is appreciated. >> >> Thanks! >> >> -Jake >> > > >
Re: [flexcoders] Dynamic DataGrid
Something like this? http://ns.adobe.com/mxml/2009"; xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" xmlns:view="com.nexage.common.view.nexWizard.view.*" xmlns:pages="com.nexage.common.view.nexWizard.sampleWizard.pages.*" xmlns:components="com.nexage.common.view.nexWizard.view.components.*" xmlns:sampleWizard="com.nexage.common.view.nexWizard.sampleWizard.*" width="100%" height="100%" creationComplete="onCC()" > Doug On Jan 14, 2013 6:15 PM, "Oleg Konovalov" wrote: > ** > > > Hi, > > I am trying to create dynamic DataGrid, > which shows columns only if it contains data > returned by query (it has 10+ columns, so not easy to calculate sizes).. > I read a lot of posts on the net, tried minWidth, ResizeMode, etc. > > Nothing really useful which works. > In most cases it created very narrow columns except the last one - super > wide. > > Please help! > > (using Flex4 AdvancedDataGrid) > > -- > Thank you in advance, > Oleg. > > >