Re: Weird bug when an unrelated skin class is present in an RSL (?!?)

2014-09-05 Thread Darrell Loverin
I would recommend generating a link report for the app and the RSL to see what the differences are the included classes are in the various scenarios. By default an RSL will not be loaded if it is not used by an application. >From you description is sounds like the RSL is not required and therefore

Verify date format

2014-09-05 Thread mark goldin
How can I verify a format of dates being sent to the server? Is it always UTC? Thanks

Deep linking in Flex mobile apps

2014-09-05 Thread sbgtech
I need to build in deep linking into an existing iOS and Android app using the Flex 4.12 SDK. Requirements - app already installed - Allow the user to click a link to open the application in a specific location other than the default startup screen. This will typically be a result of clicking a

Re: Weird bug when an unrelated skin class is present in an RSL (?!?)

2014-09-05 Thread Alex Harui
On 9/5/14 12:22 PM, "Nigel Magnay" wrote: > >What's weird (to me) though is the fact the class that breaks it in the >RSL >isn't ever used in the SWF (you can remove the reference to the library >and >it works fine). There's just something about even mentioning a class that >seems to break somet

Re: SVG/SWF to FXG Converter

2014-09-05 Thread Sascha Ahrend
I meant to convert the swf to fxg after. Yes, of course there is dependencies. It's rather meant as a workaround. Rgds., Sascha > Am 05.09.2014 um 21:28 schrieb OmPrakash Muppirala : > > On Fri, Sep 5, 2014 at 12:24 PM, Sascha Ahrend wrote: > >>> Any thoughts on creating an plugin/exten

Re: SVG/SWF to FXG Converter

2014-09-05 Thread OmPrakash Muppirala
On Fri, Sep 5, 2014 at 12:24 PM, Sascha Ahrend wrote: > > Any thoughts on creating an plugin/extension for Illustrator CC? It > would > > be a great feature to have this integrated into the workflow. > > Actually the best way to convert AI files is to import an .ai into the > stage of a Flash Pr

Re: Weird bug when an unrelated skin class is present in an RSL (?!?)

2014-09-05 Thread Nigel Magnay
I tell a lie, it's merged in both. This might be a regression - it seems to work correctly if I use 4.10 SDK in both projects, but break with 4.13 / 4.12 I'll try some more combinations tomorrow. On Fri, Sep 5, 2014 at 8:22 PM, Nigel Magnay wrote: > It's using the defaults from FP, which are

Re: SVG/SWF to FXG Converter

2014-09-05 Thread Sascha Ahrend
> Any thoughts on creating an plugin/extension for Illustrator CC? It would > be a great feature to have this integrated into the workflow. Actually the best way to convert AI files is to import an .ai into the stage of a Flash Pro file with 'Text as vector outline‘ and 'all layers into a single

Re: Weird bug when an unrelated skin class is present in an RSL (?!?)

2014-09-05 Thread Nigel Magnay
It's using the defaults from FP, which are (I think) merged in the SWF and external in the RSL. I'll have to check to be sure though. What's weird (to me) though is the fact the class that breaks it in the RSL isn't ever used in the SWF (you can remove the reference to the library and it works fin

Re: Weird bug when an unrelated skin class is present in an RSL (?!?)

2014-09-05 Thread Alex Harui
There isn't any special treatment of AS classes in the player. I didn't realize the class that makes a difference comes from the experimental swc. Is the experimental swc being loaded as an RSL or is it merged in? -Alex On 9/5/14 11:55 AM, "Nigel Magnay" wrote: >I always do... It's basically

Re: Weird bug when an unrelated skin class is present in an RSL (?!?)

2014-09-05 Thread Nigel Magnay
I always do... It's basically consistent; It seems that if the RSL project uses a class that's in the 'experimental' SWC, then MenuBar totally breaks in the main swf (and it doesn't seem to matter if that class is even used anywhere). Is there some special treatment by the flash runtime of classes

Re: Weird bug when an unrelated skin class is present in an RSL (?!?)

2014-09-05 Thread Alex Harui
Have you tried cleaning the RSL project so the RSL gets fully rebuilt? On 9/5/14 11:40 AM, "Nigel Magnay" wrote: >It should be identical - it's launched from within flash builder, so my >understanding is it's just copied into the target directory... > > > >On Fri, Sep 5, 2014 at 7:16 PM, Alex Ha

Re: Weird bug when an unrelated skin class is present in an RSL (?!?)

2014-09-05 Thread Nigel Magnay
It should be identical - it's launched from within flash builder, so my understanding is it's just copied into the target directory... On Fri, Sep 5, 2014 at 7:16 PM, Alex Harui wrote: > Hi Nigel, > > I'm not asking about application domains, but the URL of the RSL vs the > URL of the main app

Re: Weird bug when an unrelated skin class is present in an RSL (?!?)

2014-09-05 Thread Alex Harui
Hi Nigel, I'm not asking about application domains, but the URL of the RSL vs the URL of the main app. If the actual string of the domain portion of the URL is different in any way, the RSL could get loaded into a sandbox. -Alex On 9/5/14 11:00 AM, "Nigel Magnay" wrote: >The RSL is loaded int

Re: Weird bug when an unrelated skin class is present in an RSL (?!?)

2014-09-05 Thread Nigel Magnay
The RSL is loaded into the default app domain (it's a single library in flash builder). It's odd. There's a totally minimal (I.E: it's got just 2 files) example here: https://github.com/magnayn/flexbug On Fri, Sep 5, 2014 at 6:16 PM, Alex Harui wrote: > What is the load order of the RSLs?

AW: Proper commandline arguments

2014-09-05 Thread Christofer Dutz
Ok ... well I tried without any "+=" logic as this was easier to implement and it seemed to have worked. At least my projects all compiled without problems. So I just updated the Flexmojos SNAPSHOT version and it should have resolved any ambiguous command line problems. Chris

Re: Weird bug when an unrelated skin class is present in an RSL (?!?)

2014-09-05 Thread Alex Harui
What is the load order of the RSLs? You might need to look at generated code to find the order. And just to double-check, "same domain" means full domain: "rsls.foo.com" is a different domain than "www.foo.com" and even the IP address or "localhost" is different than other domain names mapped to

Re: Weird bug when an unrelated skin class is present in an RSL (?!?)

2014-09-05 Thread Nigel Magnay
I am. It does feel like a class isolation issue though. On Fri, Sep 5, 2014 at 5:32 PM, Alex Harui wrote: > Are you loading the RSL from the same domain as the app? > > -Alex > > On 9/5/14 4:47 AM, "Nigel Magnay" wrote: > > >Even more strangely, I've narrowed it down still more. The mere inclu

Re: Weird bug when an unrelated skin class is present in an RSL (?!?)

2014-09-05 Thread Alex Harui
Are you loading the RSL from the same domain as the app? -Alex On 9/5/14 4:47 AM, "Nigel Magnay" wrote: >Even more strangely, I've narrowed it down still more. The mere inclusion >of this ItemRenderer is sufficient to break the menubar: > >https://github.com/magnayn/flexbug/blob/master/buglib/s

Re: Lineseries tooltip on mobile

2014-09-05 Thread Philip Medlam
Yes, but if you allow the user to alter the x-axis min/max, the user will be able to easily select a specific point to show the value. If I misunderstood, apologies. Phil. On Fri, Sep 5, 2014 at 1:36 PM, Deepak MS wrote: > Hello Phil, > There is no issue with xaxis, I just wanted to show tool

Re: Using Adobe Scout to locate memory leak

2014-09-05 Thread Alex Harui
Can you post a link to a screenshot of Scout showing the references to the explorer instance? On 9/5/14 1:38 AM, "DarrenEvans" wrote: >Thanks Alex, useful information. > >The scenario we have is "perform a bunch of steps" and the memory just >keeps >on going up never to come back down. Do it eno

AW: Proper commandline arguments

2014-09-05 Thread Christofer Dutz
Geee ... my mail client re-formatted the urls :-( just immagine the "<.>" part didn't exist :) Chris Von: Christofer Dutz Gesendet: Freitag, 5. September 2014 16:41 An: users@flex.apache.org Betreff: Proper commandline arguments Hi, I'm currently w

Proper commandline arguments

2014-09-05 Thread Christofer Dutz
Hi, I'm currently working on fixing a bug in Flexmojos which caused to produce an ambiguous argument list when using multiple namespaces. Currently Flexmojos used to produce: -compiler.namespaces.namespace http://www.adobe.com/2006/mxml mx-manifest.xml -compi

Re: Lineseries tooltip on mobile

2014-09-05 Thread Deepak MS
Ok. I'll try to make it simpler. How do we add a click or touch tap event in a class that extends CircleItemRenderer? public class DataPointRenderer extends CircleItemRenderer { public function DataPointRenderer() { super(); } override protected fu

Re: Lineseries tooltip on mobile

2014-09-05 Thread Deepak MS
Hello Phil, There is no issue with xaxis, I just wanted to show tooltip on click of custom datapoint on lineseries. On Fri, Sep 5, 2014 at 3:36 PM, Philip Medlam wrote: > Have you considered adding a slider to allow you to change the Xaxis range > ala > width

AW: Flexmojos flexunit testing on headless Ubuntu 14.04

2014-09-05 Thread Christofer Dutz
Hi Andreas, a "solution" in which Flexmojos doesn't complain about a return code 1 sounds like a reasonable solution as long as you have to explicitly turn it on and it is not on by default. Ideally when running on Linux and encountering this problem it would be good if a message was presented

Re: Weird bug when an unrelated skin class is present in an RSL (?!?)

2014-09-05 Thread Nigel Magnay
Even more strangely, I've narrowed it down still more. The mere inclusion of this ItemRenderer is sufficient to break the menubar: https://github.com/magnayn/flexbug/blob/master/buglib/src/buglib/components/skins/MenuCoreItemRenderer2.as If you comment out the use of MenuEvent, it works. On

Re: New contributors file to recognise contributors in releases

2014-09-05 Thread Tom Chiverton
On 05/09/14 09:16, Justin Mclean wrote: > (and Tom you're in there) And to hell with email validation ;-) Tom

Flexmojos flexunit testing on headless Ubuntu 14.04

2014-09-05 Thread tjajab
Hi, I am using Flexmojos (6.0.1) to compile and test my swf application. It works fine on my Windows machine, however when trying to run it a Vagrant box with Ubuntu 14.04 (64-bit + xvfb), it sometimes fails due to the Flash player gives an error (1) while closing. I have not managed to get any d

Weird bug when an unrelated skin class is present in an RSL (?!?)

2014-09-05 Thread Nigel Magnay
So, I've narrowed this down to a test project - see https://github.com/magnayn/flexbug I have a project that uses the "Spark Menubar". It's basically the example given in the documentation: https://github.com/magnayn/flexbug/blob/master/buglet/src/buglet.mxml This all works fine, in isolation. H

Re: Lineseries tooltip on mobile

2014-09-05 Thread Philip Medlam
Have you considered adding a slider to allow you to change the Xaxis range ala I suggest thmbRelease (rather than Change) to stop the chart updating dynamically as you slide the thumb, as that might be too slow. The user can then (maybe you need two sliders, one for min value of xaxis

Re: Lineseries tooltip on mobile

2014-09-05 Thread Deepak MS
I added that piece under measure. But still, onClick method isn't getting called. On Fri, Sep 5, 2014 at 2:40 PM, Justin Mclean wrote: > Hi, > > >>>public function DataPointRenderer() > >>>{ > >>>super(); > >>>width = 20; > >>>height = 20; > >

Re: Lineseries tooltip on mobile

2014-09-05 Thread Justin Mclean
Hi, >>>public function DataPointRenderer() >>>{ >>>super(); >>>width = 20; >>>height = 20; >>>addEventListener(MouseEvent.CLICK, onClick); >>>addEventListener(TouchEvent.TOUCH_TAP, onClick); >>> >>>addEventLis

Re: Lineseries tooltip on mobile

2014-09-05 Thread Deepak MS
Any tips on this one? On Thu, Aug 28, 2014 at 9:58 AM, Deepak MS wrote: > Any help on this ? : ) > Main objective here is to make enough room on line series data point so > that user can easily touch\tap it and on doing so, show the tooltip data. > > I'm still wondering why isn't it triggering

Re: Using Adobe Scout to locate memory leak

2014-09-05 Thread Justin Mclean
Hi, > Will have a look at that localConnection hack to see if that can aid us in > finding the hanging reference. Have you tried clicking on the Force Garbage Collection icon (the garbage bin) in memory allocations tab? I find that usually narrows the issue down quite quickly. Thanks, Justin

Re: New contributors file to recognise contributors in releases

2014-09-05 Thread Justin Mclean
Hi, I just renamed the file it's now as Maxim posted: https://github.com/apache/flex-sdk/blob/develop/CONTRIBUTORS (and Tom you're in there) Thanks, Justin

Re: Using Adobe Scout to locate memory leak

2014-09-05 Thread DarrenEvans
Thanks Alex, useful information. The scenario we have is "perform a bunch of steps" and the memory just keeps on going up never to come back down. Do it enough and the application crashes, which is what the customers are reporting. Our application has a "ShellBody" and in that we have a TabNaviga

Re: New contributors file to recognise contributors in releases

2014-09-05 Thread Maxim Solodovnik
seems to be typo https://github.com/apache/flex-sdk/blob/develop/CONTRIBUTORS On 5 September 2014 14:56, Tom Chiverton wrote: > 404 > > Tom > > On 04/09/14 23:56, Justin Mclean wrote: > > Hi, > > > > We decide to add a contributors file to future releases listing everyne > who helped out with t

Re: New contributors file to recognise contributors in releases

2014-09-05 Thread Tom Chiverton
404 Tom On 04/09/14 23:56, Justin Mclean wrote: > Hi, > > We decide to add a contributors file to future releases listing everyne who > helped out with that release, that mostly having bugs fixed in that release > or testing and voting in the release candidate. > > The file for the SDK can be f