DataGrid DataProvider Excel export in iPad

2014-08-04 Thread Deepak MS
Hello, We are trying to export data to excel and open the excel in iPad. We were able to give a 'Open with..' option, but when user selects 'Excel' app to open the document, it needs xlsx format and not xls. We used AS3XLS and it doesn't have xlsx support. Came across this link, which supports xls

Re: Showcase for IOs and Android skins?

2014-08-04 Thread Deepak MS
Android skinning is in progress currently. You can look into this thread for details: http://apache-flex-development.247.n4.nabble.com/Re-IOS-7-and-Android-4-3-Skinning-td37835.html Source: https://github.com/apache/flex-sdk/tree/new_android_skins/frameworks/projects/mobiletheme/src/spark/ski

Re: mobile NumericStepper

2014-08-04 Thread quick6black
there is a nice one posted on github from group that has made some great mobile components. https://github.com/People-in-action/eskimo -- View this message in context: http://apache-flex-users.246.n4.nabble.com/mobile-NumericStepper-tp7461p7471.html Sent from the Apache Flex Users mailin

Re: Error message importing a flex project

2014-08-04 Thread Chris Martin
I think you'll need to install IIS Express. http://www.iis.net/learn/extensions/introduction-to-iis-express/iis-express-overview Checkout the project properties to see if you are using ASP.NET Development Server or IIS. It's in the Flex Server section. Chris On Mon, Aug 4, 2014 at 1:49 PM, Tre

Re: Error message importing a flex project

2014-08-04 Thread Trevor Holman
I’m guessing here (and I’m on a mac right now — so the only server option I can get under the asp is the IIS option) but when you set up a project and set the application server to asp.net, php, or whatever it would require those services to be installed when importing another project. So what I

Re: Error message importing a flex project

2014-08-04 Thread mark goldin
I dont know that. I just want to import it into my workspace. On Mon, Aug 4, 2014 at 3:27 PM, Trevor Holman wrote: > Does the old project require an application server? > > > On Aug 4, 2014, at 3:14 PM, mark goldin wrote: > > > I am trying to import an old Flex project into freshly installed F

Re: Error message importing a flex project

2014-08-04 Thread Trevor Holman
Does the old project require an application server? On Aug 4, 2014, at 3:14 PM, mark goldin wrote: > I am trying to import an old Flex project into freshly installed FB 4.7. > When I choose a folder with the project I am getting: > You do not have ASP.NET Development Server installed on a to of

Error message importing a flex project

2014-08-04 Thread mark goldin
I am trying to import an old Flex project into freshly installed FB 4.7. When I choose a folder with the project I am getting: You do not have ASP.NET Development Server installed on a to of the dialog window. Any idea what that is? Thanks

Re: Registering FB 4.7

2014-08-04 Thread mark goldin
I have product registration for Flash Builder. When I select it it takes me to a web site. But I want to enter a serial number. On Mon, Aug 4, 2014 at 2:51 PM, Justin Ransom Dallas wrote: > Is it under Help > Product Registration > > On Monday, August 4, 2014, mark goldin wrote: > > > I have d

Re: Registering FB 4.7

2014-08-04 Thread Justin Ransom Dallas
Is it under Help > Product Registration On Monday, August 4, 2014, mark goldin wrote: > I have downloaded a trial version and have a serial number. How can I enter > it? > > Thanks > -- Justin Dallas Phone:814-880-5637

Registering FB 4.7

2014-08-04 Thread mark goldin
I have downloaded a trial version and have a serial number. How can I enter it? Thanks

Re: mobile NumericStepper

2014-08-04 Thread Subscriptions
Actually, TextInput is selectable - but soft keyboard doesnt open when its focused. On 04/08/2014 19:42, Subscriptions wrote: Hi All, I am using a NumericStepper in a mobile app; it works fine on Android, but on iOS the TextInput part is not selectable. Before i attempt to debug the SDK or

mobile NumericStepper

2014-08-04 Thread Subscriptions
Hi All, I am using a NumericStepper in a mobile app; it works fine on Android, but on iOS the TextInput part is not selectable. Before i attempt to debug the SDK or build a replacement component, has anybody else experienced this and found a workaround? Thanks for any help, PS: I know that

Re: How do I to access data from objects created with addElement ?

2014-08-04 Thread Irnbru
This is an excelent approach. Especially given that I have to reference the same structure for different events. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/How-do-I-to-access-data-from-objects-created-with-addElement-tp7446p7460.html Sent from the Apache F

Re: How do I to access data from objects created with addElement ?

2014-08-04 Thread Chris Martin
Just to spit ball an idea. Maybe build up an Array/Vector with the refs to the items you built out? If you want to reference them by name directly than maybe build out an object with properties that match the generated ids. Example of array with items that you built var arrItems:Array = []; var

Mobile: Chart not working on iOS when exporting release build

2014-08-04 Thread Janurik András
Hi, I am facing a weird problem regarding charts on iOS. When I just create a quick build (ie. Run as Mobile App / Target platform: Apple iOS / launch method: on device: Fast) and install it on an iPhone all my views work properly including one with a column chart. But if do a proper export r

AUTO: Mike Meister is out of the office (Rückkehr am 18.08.2014)

2014-08-04 Thread Mike Meister
Ich kehre zurück am 18.08.2014. Ich werde Ihre Nachricht nach meiner Rückkehr beantworten. Hinweis: Dies ist eine automatische Antwort auf Ihre Nachricht "Showcase for IOs and Android skins?" gesendet am Mon821608482014216 15:40:38. Diese ist die einzige Benachrichtigung, die Sie empfangen

Showcase for IOs and Android skins?

2014-08-04 Thread Christofer Dutz
Hi, I started working for my new employer 1 day ago and I might already have a chance to do a project using Apache Flex. I already did the convincing that using flex we'll be able to ship a cross-platform solution with individual skinning for IOs and Android, but unfortunately I couldn't find

Re: Locked column in DataGrid on iPad

2014-08-04 Thread Deepak MS
Thank you Fred. That helped me in finding actual issue. I was dynamically creating the columns and earlier I had tried to directly set the lockcedColumnCount in mxml. For some reason the above code wasn't giving me any lockedcolumns. Then I tried to set the lockcedcolumns only after datagrid's

Re: Locked column in DataGrid on iPad

2014-08-04 Thread Fred Brunton
Here's an example of the spark datagrid in my app with locked first column. I have locked the first column and given it a gray background: https://www.analyticacloud.com/fixedFirstColumnSparkDataGrid.avi That's on my Ipad mini in iOS7 (not retina). I simply set dataGrid.lockedColumnCount = 1;