AW: AW: FlexUnit

2013-08-29 Thread christofer.d...@c-ware.de
Well the poms themselves don't help with the libs. I will probably be adding functionality to download Adobe stuff after asking for confirmation by the user as we discussed some months ago as soon as I am picking up on the new maven plugin. Guess it would be possible to have binary Apache Flex R

RE: [FlexJS] Getting errors with FlexJS & a simple Flex program

2013-08-29 Thread Sharma, Pratyoosh
Works like a charm!!! Thanks a lot Alex :) I am happy to see the FlexJS has achieved that critical mass where it's almost usable for prime time use, minus nice components that Flex attained over a period of time -Original Message- From: Alex Harui [mailto:aha...@adobe.com] Sent: Thursd

Re: Hanging Indents in TLF Lists

2013-08-29 Thread Alex Harui
Might be better described in jira with example. Sent via the PANTECH Discover, an AT&T 4G LTE smartphone. Harbs wrote: Does anyone have any experience with hanging indents in TLF lists? My initial tests seem to indicate that they don't work correctly. Note the following: paragraph.paragra

Re: Have ASDoc images been donated?

2013-08-29 Thread BorekB
Paths in ASDoc source files are relative ("../../images/...") so I guess there was some kind of build process for the whole documentation site at help.adobe.com. BTW, the filtering functionality there is very useful, I wish it will be incorporated into Apache Flex docs some day. -- View this mes

Re: Specifying multiple RSL URL

2013-08-29 Thread Darrell Loverin
The root of the problem seems to be trying to load the same RSL URL with a relative path from SWFs in different locations. Would either of these solutions work for you? 1. Deploy modules1.swf to the ROOT directory instead of ROOT/MODULES. 2. If rsl2.swf is only used by module1 then move rsl2.swf t

Re: [FlexJS] Getting errors with FlexJS & a simple Flex program

2013-08-29 Thread Alex Harui
It might be best to grab the example app from http://people.apache.org/~aharui/FlexJS/DataBindingTest/bin-release/ and right-click and "View Source" to get the source and modify that example. In FlexJS, the Application is not a display object so you don't add your UI widgets there, you add the

Website download page issues/feedback

2013-08-29 Thread Eric
Hello, I had some minor issues with grabbing the SDK using Chrome (and IE). Nothing to stop anyone serious, but some devs can be picky about first impressions, and I want to see this SDK continue to grow like it should. 1) With Chrome (Version 29.0.1547.57 m), clicking the download link at

Re: AW: FlexUnit

2013-08-29 Thread Alex Harui
On 8/29/13 8:08 AM, "christofer.d...@c-ware.de" wrote: >Well the Problem are the Adobe libs ... playerglobal and some others, >that we are not allowed to publish. There wouldn't be any trouble with >deploying the rest of the FDK to public repos beyond that, I guess. But >unfortunately these FDK

Re: Have ASDoc images been donated?

2013-08-29 Thread Alex Harui
On 8/29/13 5:40 AM, "BorekB" wrote: >I would like to use some images from ASDoc in a course material I am >preparing and was wondering whether images have been donated to Apache or >not. For instance, when I visit >http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/spark/c >ompo

[FlexJS] Getting errors with FlexJS & a simple Flex program

2013-08-29 Thread Sharma, Pratyoosh
I am using instructions on Alex's confluence page https://cwiki.apache.org/confluence/display/FLEX/Using+FlexJS+with+Adobe+Flash+Builder with Apache flex sdk 4.9 & overlay from here http://people.apache.org/~aharui/FlexJS/FlexJSOverlay.zip I am using closure library 20121212-r2367 with it & runn

Re: Export to Excel

2013-08-29 Thread Flexicious.com
We've done a lot of work on this front. For the longest time we generated just CSV/HTML/XML and Text, but recently added native excel. As3xls has a number of limitations (no backgrounds, limited formatting, no multiple sheets) but the biggest advantage is that it generates native excel files. Anoth

RE: Export to Excel

2013-08-29 Thread Kessler CTR Mark J
I use this method. Inherit the DataGrid into a new component and add a permanent method for export to clipboard. Has the added benefit of making changes from filtering / sorting / column visibility. -Mark -Original Message- From: Scott Talsma [mailto:sc...@talsma.tv] Sent: Thursday,

Re: Export to Excel

2013-08-29 Thread Alexandre Barreiros
Hi All, The best solution that i have till now is to export as an CSV file. Alexandre Em 29-08-2013 18:48, Scott Talsma escreveu: Oleg, I have had great luck simply scraping the entire grid into an HTML table, and placing it into the clipboard. Then popup an an alert instructing the user to

RE: FlexUnit

2013-08-29 Thread Frédéric THOMAS
If the user has the karma to deploy, the deployer can be used to deploy it, it works on command line whatever the repository manager. -Message d'origine- De : omup...@gmail.com [mailto:omup...@gmail.com] De la part de OmPrakash Muppirala Envoyé : jeudi 29 août 2013 19:32 À : dev@flex.apach

Re: Specifying multiple RSL URL

2013-08-29 Thread Scott Talsma
Can you simply reference a class from rsl1 in application? That should cause the rsl to be loaded correctly by the main app? Or is that not an acceptable behavior (longer startup time). On Thu, Aug 29, 2013 at 10:31 AM, Jagan Langa Sami Durai < jaga...@sybrant.com> wrote: > Hi All, > > This is

Re: Export to Excel

2013-08-29 Thread Scott Talsma
Oleg, I have had great luck simply scraping the entire grid into an HTML table, and placing it into the clipboard. Then popup an an alert instructing the user to paste into Excel. Obviously, if you are exporting 2 grids, then you rely on the user to move the cursor correctly to the new position.

Re: FlexUnit

2013-08-29 Thread OmPrakash Muppirala
On Thu, Aug 29, 2013 at 8:04 AM, christofer.d...@c-ware.de < christofer.d...@c-ware.de> wrote: > That actually sounds like a really good idea from my side ... and I really > don't know, why nobody came up with that Suggestion yet ;-) > I remember discussing this a while ago. As long as there is

Re: Export to Excel

2013-08-29 Thread OmPrakash Muppirala
I have used AS3XLS and quickly ran into serious limitations. >From my experience, the best and easiest way to export to Excel is to write it out as html and save it as an .xls(x) file. Excel does a great job at reading these files and so far I have not run into any issues with this approach To f

RE: FlexUnit

2013-08-29 Thread Pete Thomas
It was 6 now it's 7 still failing :-( Pete Thomas tel: +44 (0)208 832 7179 www.dunnhumby.com P please consider the environment before printing this email. -Original Message- From: Michael A. Labriola [mailto:labri...@digitalprimates.net] Sent: 29 August 2013 16:58 To: dev@flex.apache.

Re: Export to Excel

2013-08-29 Thread Simonas Pauliukevičius
Why not generate spreadsheets on the server side? Popular server side languages have a bunch of nice libs that can help you with export. I myself used ClosedXML with ASP.NET enabled server. On Thu, Aug 29, 2013 at 7:33 PM, Oleg Konovalov wrote: > Hi, > > I am trying to export data from few Data

Export to Excel

2013-08-29 Thread Oleg Konovalov
Hi, I am trying to export data from few DataGrids to Excel, using AS3XLS library, but it seems it doesn't create a second sheet. Does anyone knows how to do it? Or is there a better AS library for that? Optionally I might want to skip a few rows and put second DG data there. But how to add blank

RE: FlexUnit

2013-08-29 Thread Pete Thomas
Sure I'll check it out Pete Thomas tel: +44 (0)208 832 7179 www.dunnhumby.com P please consider the environment before printing this email. -Original Message- From: Michael A. Labriola [mailto:labri...@digitalprimates.net] Sent: 29 August 2013 16:58 To: dev@flex.apache.org Subject: RE:

RE: FlexUnit

2013-08-29 Thread Michael A. Labriola
>Our FlexUnit tests have started to fail lately. The JVM on the build server >was updated... or at least changed not sure which. >The error we are getting is: >[flexunit] java.lang.NoSuchMethodError: java.lang.String.isEmpty() >I'm pretty sure we have using the latest version of FlexUnit, can you

Re: AW: FlexUnit

2013-08-29 Thread Avi Kessner
How large are the adobe libs? I'd much rather have to manually add a dependency to a swc or two than have to upload 100MB each time I decide to switch sdks or set up a project at a new company. These lawyers certainly are a pain, unless we can convince adobe to have those on a repo somewhere? On

AW: FlexUnit

2013-08-29 Thread christofer.d...@c-ware.de
Well the Problem are the Adobe libs ... playerglobal and some others, that we are not allowed to publish. There wouldn't be any trouble with deploying the rest of the FDK to public repos beyond that, I guess. But unfortunately these FDKs would be completeley useless without the missing Adobe lib

AW: FlexUnit

2013-08-29 Thread christofer.d...@c-ware.de
That actually sounds like a really good idea from my side ... and I really don't know, why nobody came up with that Suggestion yet ;-) It would reduce the "Manual" part to the clicking of a Checkbox. In that case I would also opt for a second Checkbox that is available as soon as someone choos

RE: FlexUnit

2013-08-29 Thread Pete Thomas
Hi Mike Our FlexUnit tests have started to fail lately. The JVM on the build server was updated... or at least changed not sure which. The error we are getting is: [flexunit] java.lang.NoSuchMethodError: java.lang.String.isEmpty() I'm pretty sure we have using the latest version of FlexUnit,

RE: FlexUnit

2013-08-29 Thread Michael A. Labriola
>Great! .. I pushed my changes always to "makeFlexUnitApacheReady". Shall I >merge those changes also to develop branch and continue to work on this one? I think that's a good idea and we can keep merging back to develop. I always work in my own local branches in either case. I have a bunch of

Specifying multiple RSL URL

2013-08-29 Thread Jagan Langa Sami Durai
Hi All, This is how I deployed my application. ROOT/application.swf ROOT/MODULES/module1.swf ROOT/RSLS/rsl1.swf ROOT/RSLS/rsl2.swf This is how I specified the rsl's path while compiling my application and modules( in ant script) Here is my problem, application.swf uses the rsl1.swf as

Re: FlexUnit

2013-08-29 Thread Nick Collins
Would a reasonable compromise be to add the "mavenizing" of the FDK as an option to the installer? Where all I need do is check a box saying "Use Apache Flex with Maven", and have the installer take care of converting the FDK to the maven format and adding it to my local Maven repository. On Thu

Re: FlexUnit

2013-08-29 Thread Avi Kessner
Oh, and thank you. mavenizing was very quick and easy , deploying on the other hand.. (atleast I don't have to do it manually) brought to you by the letters A, V, and I and the number 47 On Thu, Aug 29, 2013 at 5:06 PM, Avi Kessner wrote: > So legally we can't store these sdks for maven public

Re: FlexUnit

2013-08-29 Thread Avi Kessner
So legally we can't store these sdks for maven publicly? I see 4.1 is 112MB, yech. brought to you by the letters A, V, and I and the number 47 On Thu, Aug 29, 2013 at 2:32 PM, christofer.d...@c-ware.de wrote: > And I hate "lawyers" more than "manually" ;-) > > It's actually a Multi Minute proce

Hanging Indents in TLF Lists

2013-08-29 Thread Harbs
Does anyone have any experience with hanging indents in TLF lists? My initial tests seem to indicate that they don't work correctly. Note the following: paragraph.paragraphStartIndent = 12; paragraph.textIndent = -12; Properly creates a hanging indent of 12 pixels. If the paragraph element has

Have ASDoc images been donated?

2013-08-29 Thread BorekB
I would like to use some images from ASDoc in a course material I am preparing and was wondering whether images have been donated to Apache or not. For instance, when I visit http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/spark/components/SplitViewNavigator.html, there is an ima

AW: FlexUnit

2013-08-29 Thread christofer.d...@c-ware.de
And I hate "lawyers" more than "manually" ;-) It's actually a Multi Minute process to Mavenize an FDK as I created the Apache Flex Mavenizer for that (It actually also mavenizes Adobe Flex FDKs) together with the Auto deployer you should have any Flex FDK mavenized and deployed in minutes. ht

Re: Greate News! Flex 4.10 with AIR 3.8 running very smooth on iOS and Mac OS when "renderMode" set to "direct"

2013-08-29 Thread Deepak MS
Hi Swen, Sure, No worries :). Thanks... On Wed, Aug 28, 2013 at 6:03 PM, Swen van Zanten wrote: > Hi Deepak, > > Those warning are there because of the import and use of the experimental > components. This is an already known issue :) > Nothing to worry about for now. > > Regards, > > SWEN VA

Re: FlexUnit

2013-08-29 Thread Avi Kessner
Thanks. I hate that word.. "manually". Is there a more recent version or alternative to mockolate as well? And is this a multi day or multi hour process to mavenize the FDK? brought to you by the letters A, V, and I and the number 47 On Thu, Aug 29, 2013 at 1:11 PM, christofer.d...@c-ware.de wro

AW: FlexUnit

2013-08-29 Thread christofer.d...@c-ware.de
Hi, Unit testing is a pretty tricky thing in Flexmojos. That's one of the things I am intending on performing the largest changes the the new plugin. But from your question I can see you are using an about 100 year old Version of Flexmojos and Flex. I know I did quite a lot of tweaks and update

Re: FlexUnit

2013-08-29 Thread Avi Kessner
I'm sorry to go off topic, but this is really starting to fustrate me. If anyone is able to help me out over at stackOverflow I really appreciate it! http://stackoverflow.com/questions/18505129/how-do-i-get-flexunit-flexmojos-and-mockolate-to-work-together brought to you by the letters A, V, and