RE: AW: Parseley and [MessageHandler]

2015-09-10 Thread Frédéric THOMAS
so extensions so you can plug the feature your app needs, it is like "pay as you go". And what I like the most, is you can use the mvc pattern you like, pureMvc style (with mediator) or presenter pattern like in Parsley for example. Also, you can you standard flex event and / or Signals.

Re : RE: Parseley and [MessageHandler]

2015-09-10 Thread Frédéric THOMAS
Hi, This extension is nice though https://github.com/alebianco/robotlegs-utilities-macrobot --- Message initial --- De : "After24" Envoyé : 10 septembre 2015 08:26 A : users@flex.apache.org Objet : RE: Parseley and [MessageHandler] Hello Thomas, Yes, Robotleg is excellent too and it's lighte

RE: Parseley and [MessageHandler]

2015-09-09 Thread Frédéric THOMAS
r the large company applications I've been developed, now if I would reconsider my choice, I would opt for Robotleg, it does everything you need 99% of the time, is much lighter and also open source, well tested and constructed. My 2 cents. Frédéric THOMAS > Date: Wed, 9 Sep 2015 04:32:25

RE: Can FlexJS Be Used for Mobile AIR?

2015-08-27 Thread Frédéric THOMAS
Actually, I just noticed the screen shot shows the frameworks/libs/player path and my lib doesn't contain it, I will update the screen shot today to reflect that, so, it is apparently a mistake from me. Thanks for your time :-) Frédéric THOMAS > Date: Tue, 25 Aug 2015 23:21:13 -070

RE: Can FlexJS Be Used for Mobile AIR?

2015-08-25 Thread Frédéric THOMAS
ike this [1] and this global library is set as merged in your module dependencies ? The SDK should also contain ./frameworks entries only. Btw, if you update the .rar, I can check the other points ! Thanks, Frédéric THOMAS [1] https://cwiki.apache.org/confluence/download/attach

RE: Can FlexJS Be Used for Mobile AIR?

2015-08-25 Thread Frédéric THOMAS
And I updated the doc to reflect what I just talked about for Module / Project and also updated the Chrome config screenshot for debugging to reflect the recent changes on their plugin default setting. Frédéric THOMAS > From: webdoubl...@hotmail.com > To: users@flex.apache.org > Su

RE: Can FlexJS Be Used for Mobile AIR?

2015-08-25 Thread Frédéric THOMAS
One more thing, indeed I wasn't able to check if you setup correctly the FlexJS SDK and FlexJS Lib in IJ as described in the doc, double check that too and it should be ok. Frédéric THOMAS > From: webdoubl...@hotmail.com > To: users@flex.apache.org > Subject: RE: Can FlexJS Be U

RE: Can FlexJS Be Used for Mobile AIR?

2015-08-25 Thread Frédéric THOMAS
project, seen you applied the above steps to Project instead of Module, that's still very find, except you didn't remove the default local and you added a Default options in the Module Defaults, I cleared it, after those fixes, I've been able to build and run the App in a mobile simul

RE: Can FlexJS Be Used for Mobile AIR?

2015-08-24 Thread Frédéric THOMAS
By curiosity, I quickly setup an IJ project for it and I've been able to build (swf and JS) and run MobileTrader.swf in a Galaxy Tab emulator without any issues, in the browser, I have an empty DIV only. Frédéric THOMAS > From: aha...@adobe.com > To: users@flex.apache.org > Su

RE: Can FlexJS Be Used for Mobile AIR?

2015-08-24 Thread Frédéric THOMAS
Btw, I can't see frameworks\themes\Mobile\mobile.swc, it seems it is not included, you will have to wait for others answers I guess to know why :-) Frédéric THOMAS > From: webdoubl...@hotmail.com > To: users@flex.apache.org > Subject: RE: Can FlexJS Be Used for Mobile AIR? >

RE: Can FlexJS Be Used for Mobile AIR?

2015-08-24 Thread Frédéric THOMAS
wrong, I assumed you followed https://cwiki.apache.org/confluence/display/FLEX/Using+FlexJS+with+IntelliJ+IDEA ? Frédéric THOMAS > Date: Mon, 24 Aug 2015 05:02:35 -0700 > From: yishayj...@hotmail.com > To: users@flex.apache.org > Subject: Can FlexJS Be Used for Mobile AIR? > > Hi

RE: Adobe Debugger

2015-08-20 Thread Frédéric THOMAS
I haven't been checking for 2 weeks maybe or so and I had to add --disable-bundled-ppapi-flash, I will need to update the screenshot too. Thanks Alex, Frédéric THOMAS > From: aha...@adobe.com > To: users@flex.apache.org > Subject: Re: Adobe Debugger > Date: Thu, 20 Aug 20

RE: Adobe Debugger

2015-08-20 Thread Frédéric THOMAS
I to do that from IJ having no issues: https://cwiki.apache.org/confluence/download/attachments/57903041/image2015-8-2%2019%3A47%3A52.png?version=1&modificationDate=1438541272000&api=v2 It will create a new profile and get ride of the script time out. Frédéric THOMAS > Date: Thu,

RE: Events with itemRenders

2015-06-28 Thread Frédéric THOMAS
> yes with out any luck, also tried this. And that ? popup:DeleteStudentConfirmation  = new DeleteStudentConfirmation (); popup.addEventListener("OKTODELETE", deleteThisRecords); PopUpManager.addPopUp(popup, FlexGlobals.topLevelApplication as DisplayObject, true); Fr

RE: Events with itemRenders

2015-06-28 Thread Frédéric THOMAS
ry popup.addEventListener("OKTODELETE", deleteThisRecords); instead ? Frédéric THOMAS > Subject: Events with itemRenders > From: smathe...@intralinks.com > To: users@flex.apache.org > Date: Sun, 28 Jun 2015 17:41:02 + > >

RE: How can I build this ItemRenderer based on an IconItemRenderer

2015-06-28 Thread Frédéric THOMAS
Did you try to extends UITextField and add this.addEventListener(ResizeEvent.RESIZE, truncate); in the constructor and add     protected function truncate(event:ResizeEvent):void {     truncateToFit();     } Or something similar. Frédéric THOMAS

RE: A script has executed for longer than ....

2015-06-26 Thread Frédéric THOMAS
> In Flex 3, mx.core.Application.application from anywhere should give you > access to the Application and thus its stage. > > In Flex 4, use FlexGlobals.topLevelApplication. Ah yes, a check I should do in easyWorker too if I want it compatible with Flex 3. Thanks, Fré

RE: A script has executed for longer than ....

2015-06-26 Thread Frédéric THOMAS
> Cannot download EasyWorker. File not found. Yes, they remove it after 1 month, if you want to use it, the best is you compile it from the sources. Frédéric THOMAS > From: markzolo...@gmail.com > Date: Fri, 26 Jun 2015 13:24:16 + > Su

RE: A script has executed for longer than ....

2015-06-25 Thread Frédéric THOMAS
> Can I implement workers if I use Flex 3 with 4.13 SDK? If you want to use https://github.com/doublefx/easyWorker, the minimum is Apache Flex 4.13.0 FP 11.5 AIR 3.5, for Flex 3, I guess yes too as the only added class was in core IIRC Frédéric THO

RE: A script has executed for longer than ....

2015-06-25 Thread Frédéric THOMAS
lib containing only the classes an functions you need, instantiate it at application / module startup or even create a pool of Threads and use it whenever you will receive your data. Frédéric THOMAS > From: markzolo...@gmail.com > Date: Thu, 25 Ju

RE: Insallation de Flex SDK Installer 3.1 dans ubuntu 12.04

2015-06-25 Thread Frédéric THOMAS
://flex.apache.org/download-binaries.html The Adobe SDK from http://www.adobe.com/devnet/air/air-sdk-download.html Frédéric THOMAS > Date: Thu, 25 Jun 2015 14:45:39 + > Subject: Insallation de Flex SDK Installer 3.1 dans ubuntu 12.04 > From: azz.d...@gmail

RE: Browser timeout in long process

2015-06-17 Thread Frédéric THOMAS
tion.httpIdleTimeout = remoteObject.requestTimeout * 1000; remoteObject.channelSet.addChannel( amfChannel ); Frédéric THOMAS > Date: Wed, 17 Jun 2015 10:03:13 -0700 > From: j.ballada...@verizon.net > To: users@flex.apache.org > Subject: Re:

RE: AW: issue with Popupmanager SDK 4.14 / Flexmojos 7.1

2015-06-17 Thread Frédéric THOMAS
b/src/main/flex/com/ilias/solutions/flexappeal/status/StatusManager.as:359] Frédéric THOMAS > From: aha...@adobe.com > To: users@flex.apache.org > Subject: Re: AW: issue with Popupmanager SDK 4.14 / Flexmojos 7.1 > Date: Wed, 17 Jun 2015 05:14:14

RE: AW: issue with Popupmanager SDK 4.14 / Flexmojos 7.1

2015-06-15 Thread Frédéric THOMAS
Did you try to add this in your FM configuration ?     mx.managers.systemClasses.MarshallingSupport Frédéric THOMAS > From: Filip.L'homme...@ilias-solutions.com > To: users@flex.apache.org > Subject: RE: AW: issue with Popupma

RE: Adding JS graph to Flex project

2015-06-15 Thread Frédéric THOMAS
> Is there a way to customize that conversion function to stringify > ArrayCollection - encode it into a string? Yeah, I guess you should write a custom JSONSerializer and JSONDeserializer, for ArayCollection, you can serialize the source Array instead for example. Frédéric

RE: * vs Object

2015-06-12 Thread Frédéric THOMAS
, ...) and use Vector. when I don't don't the subtype but it is a matter of style, it won't make any differences as far as I'm aware of. Frédéric THOMAS > From: webdoubl...@hotmail.com > To: users@flex.apache.org > Subject: RE:

RE: * vs Object

2015-06-12 Thread Frédéric THOMAS
vector:* = new Vector.<*>(); // will return a Vector.<*> even though vector is typed * var objects:Vector. = new Vector.(); vector.push(1); vector.push(new Object()); objects.push(1); objects.push(new Object()); both work. Frédéric THOMAS ---

RE: AW: AW: Need help with air packaging

2015-05-29 Thread Frédéric THOMAS
xe-package/ . Frédéric THOMAS > Date: Fri, 29 May 2015 15:03:47 +0200 > Subject: RE: AW: AW: Need help with air packaging > From: victor.munte...@equillon.ro > To: users@flex.apache.org > > Well in the end I modified the project source code which I am not ha

RE: Chrome for debugging

2015-04-21 Thread Frédéric THOMAS
IIRC the use of a local web server to serve the files [1] which is not a handy at all solution at developer point of view. Frédéric THOMAS [1] https://forums.adobe.com/message/6945735#6945735 > Date: Tue, 21 Apr 2015 05:01:36 -0700 > From: yishayj...@hotmail.com > To: users@flex.apache

RE: Re : Re: Chrome for debugging

2015-04-07 Thread Frédéric THOMAS
I guess FB doesn't allow you to choose which chrome you want to use and stick on the default one, it doesn't allow you either to pass arguments, that's why. Frédéric THOMAS > Date: Tue, 7 Apr 2015 08:55:46 -0500 > Subject: Re: Re : Re: Chrome for debugging > From: ma

RE: Re : Re: Chrome for debugging

2015-04-07 Thread Frédéric THOMAS
THOMAS > Date: Tue, 7 Apr 2015 08:09:32 -0500 > Subject: Re: Re : Re: Chrome for debugging > From: markzolo...@gmail.com > To: users@flex.apache.org > > Thanks for the info. Can you please explain what would profile-directory="Dev" > do? > > > On Tue,

RE: Re : Re: Chrome for debugging

2015-04-07 Thread Frédéric THOMAS
: open -a "Google Chrome" --args --profile-directory="Dev" --disable-hang-monitor And for Linux: google-chrome --profile-directory="Dev" --disable-hang-monitor HTH, Frédéric THOMAS > Date: Mon, 6 Apr 2015 06:15:38 -0500 > Subject: Re: Re : Re: Chrome for debugg

Re : Re: Re : Re: Chrome for debugging

2015-04-06 Thread Frédéric THOMAS
And I unprotected my tweets. --- Message initial --- De : "Frédéric THOMAS" Envoyé : 6 avril 2015 13:33 A : users@flex.apache.org Objet : Re : Re: Re : Re: Chrome for debugging Im not in front of my computer but feel free to share, I added you. --- Message initial --- De : &quo

Re : Re: Re : Re: Chrome for debugging

2015-04-06 Thread Frédéric THOMAS
Im not in front of my computer but feel free to share, I added you. --- Message initial --- De : "Paul Hastings" Envoyé : 6 avril 2015 13:30 A : users@flex.apache.org Objet : Re: Re : Re: Chrome for debugging Unfortunately your tweets are protected. Can you copy/paste to the list?

Re : Re: Chrome for debugging

2015-04-06 Thread Frédéric THOMAS
Try this guys https://twitter.com/webDoubleFx/status/584413022350876672?s=09 HTH, Fred. --- Message initial --- De : "Mark Line" Envoyé : 5 avril 2015 17:32 A : users@flex.apache.org Objet : Re: Chrome for debugging Don't think you can turn it off in chrome. In Firefox you can turn the time ou

[FlexMojos] Mavenig the AIR "runtime" artifacs

2014-12-16 Thread Frédéric THOMAS
${project.build.directory}/runtimes/air/win Then in my pom, I give the path to adl thru a FM reflected property ${project.build.directory}/bin/adl.exe which is the same than the FM property adlCommand Frédéric THOMAS [1] https://cwiki.

RE: AW: AW: [FlexMojos] Compatible Model Validator

2014-12-12 Thread Frédéric THOMAS
Yeah, I added that recently, thinking it was better than checking if the file was present from inside a pom profile :-) Frédéric THOMAS > From: christofer.d...@c-ware.de > To: users@flex.apache.org > Subject: AW: AW: [FlexMojos] Compatible Model Validator > Date: Fri, 12 Dec 2014 10

RE: AW: [FlexMojos] Compatible Model Validator

2014-12-12 Thread Frédéric THOMAS
ycle enhancements" from the same source, which is what I do, one of the component has a role = AbstractMavenLifecycleParticipant.class, I use it to install the extension. Frédéric THOMAS > From: christofer.d...@c-ware.de > To: users@flex.apache.org > Subject: AW: [FlexMojos] Compati

RE: Flex Sync solutions

2014-12-10 Thread Frédéric THOMAS
remote data in json / xml format. and sync yourself with the remote or use frameworks like Clear Tool Kit [3] which embed a complete solution if you don't have an expensive LifeCycle license but still use BlazeDS, Spring and Hibernate, I don't know if the same exists with PHP. HTH Frédé

RE: AW: [FlexMojos] Compatible Model Validator

2014-12-09 Thread Frédéric THOMAS
er-1.0-SNAPSHOT.pom, line 341, column 21 [WARNING] [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build. [WARNING] [WARNING] For this reason, future Maven versions might no longer support building such malformed projects. [WARNING] Did

RE: AW: [FlexMojos] Compatible Model Validator

2014-12-09 Thread Frédéric THOMAS
en classes as a start, hopping that way, it will be more easily accepted in case that works. Frédéric THOMAS > From: christofer.d...@c-ware.de > To: users@flex.apache.org > Subject: AW: [FlexMojos] Compatible Model Validator > Date: Tue, 9 Dec 2014 09:45:57 + > > The maven guy

RE: AW: [FlexMojos] Compatible Model Validator

2014-12-09 Thread Frédéric THOMAS
-configs and so on) Thought ? Frédéric THOMAS > From: christofer.d...@c-ware.de > To: users@flex.apache.org > Subject: AW: [FlexMojos] Compatible Model Validator > Date: Tue, 9 Dec 2014 09:24:14 + > > Well in order to address this issue I was planning on automatically

RE: AW: [FlexMojos] Compatible Model Validator

2014-12-09 Thread Frédéric THOMAS
, let's see... Frédéric THOMAS > From: christofer.d...@c-ware.de > To: users@flex.apache.org > Subject: AW: [FlexMojos] Compatible Model Validator > Date: Tue, 9 Dec 2014 09:24:14 + > > Well in order to address this issue I was planning on automatically > processing

RE: AW: Creating a Jenkins/Maven POM for an existing Flash Develop project

2014-12-09 Thread Frédéric THOMAS
x27;s moving forward. HTH Frédéric THOMAS > Date: Mon, 8 Dec 2014 08:23:04 -0800 > From: pet...@sparkol.com > To: users@flex.apache.org > Subject: Re: AW: Creating a Jenkins/Maven POM for an existing Flash Develop > project > > Thanks both for your input. Unfortunately I feel

RE: AW: [FlexMojos] Compatible Model Validator

2014-12-08 Thread Frédéric THOMAS
org.codehaus.groovy groovy-xml 2.1.0-rc-2 ${pom.basedir}/src/main/script/copyFlexResources.groovy com.*.blabla Application ${Applicati

RE: AW: [FlexMojos] Compatible Model Validator

2014-12-08 Thread Frédéric THOMAS
give it to Apache ? Doing so, it will benefit of the CI which will install it in the Apache Maven repo and will be available for anyone without having the burden to build it. Thanks, Frédéric THOMAS > From: webdoubl...@hotmail.com > To: users@flex.apache.org > Subject: RE: AW: [FlexMoj

RE: AW: [FlexMojos] Compatible Model Validator

2014-12-07 Thread Frédéric THOMAS
Just added an auto install feature, you can now do: com.doublefx.maven.utils.flexmojos flexmojos-compatible-model-validator 1.0.0-SNAPSHOT ...https://github.com/doublefx/flexmojos-compatible-model-validator Frédéric THOMAS

RE: AW: [FlexMojos] Compatible Model Validator

2014-12-06 Thread Frédéric THOMAS
things. Or I didn't get well your point :-) Frédéric THOMAS [1] http://maven.apache.org/ref/3.2.3/maven-core/apidocs/org/apache/maven/execution/MavenSession.html > From: christofer.d...@c-ware.de > To: users@flex.apache.org > Subject: AW: [FlexMojos] Compatible Model Validator >

RE: AW: [FlexMojos] Compatible Model Validator

2014-12-05 Thread Frédéric THOMAS
Hum.. Not sure I understand totally, you want to add an extension to FlexMojos as a module and that extension could be extended to add features like rules and suggestions regarding the plugin configuration ? Frédéric THOMAS > From: christofer.d...@c-ware.de > To: users@flex.apac

RE: AW: [FlexMojos] Compatible Model Validator

2014-12-05 Thread Frédéric THOMAS
I mean, adding the extension as a new module and add a goal to install the extension, what do you think ? Frédéric THOMAS From: webdoubl...@hotmail.com To: users@flex.apache.org Subject: RE: AW: [FlexMojos] Compatible Model Validator Date: Fri, 5 Dec 2014 15:01:06 + Could be a new goal

RE: AW: [FlexMojos] Compatible Model Validator

2014-12-05 Thread Frédéric THOMAS
Could be a new goal ? Frédéric THOMAS > From: christofer.d...@c-ware.de > To: users@flex.apache.org > Subject: AW: [FlexMojos] Compatible Model Validator > Date: Fri, 5 Dec 2014 14:54:37 + > > Well I was more thinking of adding a module to flexmojos in order to release

RE: AW: [FlexMojos] Compatible Model Validator

2014-12-05 Thread Frédéric THOMAS
ould copy the deployed extension into the lib/ext folder as done in Wagon maven plugin [2] Any better ideas? Frédéric THOMAS [1] prepare-maven-extended-libs ${env.MAVEN_HOME}/lib/ext/flexmoj

[FlexMojos] Compatible Model Validator

2014-12-05 Thread Frédéric THOMAS
Hi, For those interested I created and shared a Maven extension to get rid of the Maven warnings regarding the custom scopes [1]. Frédéric THOMAS [1] https://github.com/doublefx/flexmojos-compatible-model-validator

RE: Creating a Jenkins/Maven POM for an existing Flash Develop project

2014-12-02 Thread Frédéric THOMAS
ch compute the checksum at import time, did you to import the mavenized SDK to an artifactory ? Frédéric THOMAS > Date: Tue, 2 Dec 2014 08:36:05 -0800 > From: pet...@sparkol.com > To: users@flex.apache.org > Subject: RE: Creating a Jenkins/Maven POM for an existing Flash Develop >

RE: AW: AW: how to updateDisplayList() in custom headerRenderer? (help!)

2014-12-02 Thread Frédéric THOMAS
Hi, Don't know if it can help but what I used to do was to build the datagrid dynamically when a relative to the data-structure I received, setting the headers in the same time, then display this new instance at the place of the last one. Frédéric THOMAS > From: okrue...@edscha.

RE: Creating a Jenkins/Maven POM for an existing Flash Develop project

2014-12-02 Thread Frédéric THOMAS
g every day at work, it is a tricky job to do mavenize Flex / Air applications at the moment, one of the reason is that the old versions of FlexMojos are not supported anymore and the new one requires a quite deep knowledge, once again, that should change relatively soon. Frédéric THOMAS

RE: No access to MX:SWFLoader "content" after dynamic loading a SWF file

2014-12-01 Thread Frédéric THOMAS
Hi, An other example here [1] allowing you to load as trusted a multi-versioned Air app and the explanation in the Wiki on what it is and how it works [2] with some guidelines if your loader app and you loaded app uses Parsley. HTH too. Frédéric THOMAS [1] https://github.com/doublefx

RE: Maven Build Issue after Update JDK from 1.6 to 1.8

2014-11-25 Thread Frédéric THOMAS
pdf swf HTH Frédéric THOMAS > Date: Tue, 25 Nov 2014 03:10:09 -0800 > From: kumawat.it...@gmail.com > To: users@flex.apache.org > Subject: Maven Build Issue after Update JDK from 1.6 to 1.8 > > Hi > > I have following build configuartion > >

RE: Strange error during compilation Flex 13 AIR 15.0.0.356

2014-11-23 Thread Frédéric THOMAS
Hi Angello, Can you provide more details pls ? You said compile and debug, where the error comes ? have you got a stack trace ? Frédéric THOMAS From: lazzari.ang...@gmail.com Date: Sun, 23 Nov 2014 11:30:58 +0100 Subject: Strange error during compilation Flex 13 AIR 15.0.0.356 To: users

Re : Flash player minimal version for SDK 4.13

2014-11-20 Thread Frédéric THOMAS
10.2 IIRC --- Message initial --- De : "mark goldin" Envoyé : 19 novembre 2014 23:09 A : "users" Objet : Flash player minimal version for SDK 4.13 Will SDK 4.13 work with FP version 10? Thanks

RE: Decimal to Hex conversion.

2014-09-30 Thread Frédéric THOMAS
oal really. Frédéric THOMAS > Subject: Re: Decimal to Hex conversion. > From: gsmit...@hotmail.com > Date: Tue, 30 Sep 2014 09:17:18 -0700 > To: users@flex.apache.org > > Converting decimal numbers with fractional parts to hex is rather unusual. > I'm curious why you want

RE: Decimal to Hex conversion.

2014-09-29 Thread Frédéric THOMAS
And for even a better precision (tried on PI), fractionalPart = parseFloat((product - carry).toFixed(iterationMax - i)); Frédéric THOMAS > From: webdoubl...@hotmail.com > To: users@flex.apache.org > Subject: RE: Decimal to Hex conversion. > Date: Mon, 29 Sep 2014 22:13:25 +0100 &

RE: Decimal to Hex conversion.

2014-09-29 Thread Frédéric THOMAS
at((product - carry).toFixed(iterationMax)); if (fractionalPart == 0) break; } hex += "." + carryArr.join(""); } return hex; } and should be use in the as per the previous example: dec2hex(parseFloat(scaledVal.text)); Fréd

RE: Decimal to Hex conversion.

2014-09-29 Thread Frédéric THOMAS
Ok, I found the problem in mine for big numbers. @harbs, your function works for big numbers but not fractional, anyway, I didn't optimize mine, so, I will use its recursive pattern to recode mine, thanks. Frédéric THOMAS > Subject: Re: Decimal to Hex conversion. > From: harbs.li..

RE: Decimal to Hex conversion.

2014-09-29 Thread Frédéric THOMAS
dec2hex -> toString(16) -> real 14159265359 -> 0x34.34BF53E2D -> 0x4BF53E4F -> 0x34BF53E4F 3.14159265359 -> 0x3.243F6A8885D -> 0x3.0 -> 0x3.243F6A8885A308D In between I'll try to find a way to code the correct function. Frédéric THOMAS > From: webdoubl...@hotmail.c

RE: Decimal to Hex conversion.

2014-09-29 Thread Frédéric THOMAS
loat((product - carry).toFixed(iterationMax)); if (fractionalPart == 0) break; } hex += "." + carryArr.join(""); } return hex; } You could probably optimize it but at least it returns the correct result. Frédéric

RE: Decimal to Hex conversion.

2014-09-29 Thread Frédéric THOMAS
= scaledVal.substring(0, str.length-1); } Or use a preventDefault() and to optimize a bit, on change, check the event is of type CHANGE before computing. HTH, Frédéric THOMAS > From: sathikeshj...@gmail.com > Date: Mon, 29 Sep 2014 17:42:33 +0530 > Subject: Re: Decim

RE: Decimal to Hex conversion.

2014-09-29 Thread Frédéric THOMAS
hexVal.text ="0x" + scaledVal.text.split(".").map(function (item:*, index:int, array:Array):String { return int(item).toString(16).toUpperCase(); }).join("."); Frédéric THOMAS > From: miguel.cd.ferre...@hotmail.com > To: users@flex.apac

[trusted Multi-versioned AIR app] (was RE: [AIR - loadForCompatibility])

2014-09-27 Thread Frédéric THOMAS
Hi all, Because it could be useful for folks and because the copy / paste in my mailer doesn't often give the expected result, I create a little github repo to host the code and a wiki: https://github.com/doublefx/trustedMultiVersionedAirDemo HTH, Frédéric THOMAS > From:

RE: [AIR - loadForCompatibility]

2014-09-26 Thread Frédéric THOMAS
And forgot to mention but both the loader and the application needs to be compiled with -includes=mx.managers.systemClasses.MarshallingSupport Frédéric THOMAS > From: webdoubl...@hotmail.com > To: users@flex.apache.org > Subject: RE: [AIR - loadForCompatibility] > Date: Fri, 26 Se

RE: [AIR - loadForCompatibility]

2014-09-26 Thread Frédéric THOMAS
> Was the remote SWF able to make "secure" calls to the server? Remote calls yes, but we're not in https, so, I can't say. Frédéric THOMAS > From: webdoubl...@hotmail.com > To: users@flex.apache.org > Subject: RE: [AIR - loadForCompatibility] > Date: Fri, 26 S

RE: [AIR - loadForCompatibility]

2014-09-26 Thread Frédéric THOMAS
dules lighter. Thanks for having given me the clue. Frédéric THOMAS > From: aha...@adobe.com > To: users@flex.apache.org > Subject: Re: [AIR - loadForCompatibility] > Date: Thu, 25 Sep 2014 16:25:56 + > > Makes sense. Thanks for sharing. > > Was the remote SWF able

RE: [AIR - loadForCompatibility]

2014-09-25 Thread Frédéric THOMAS
preinitializeHandler(event)" showStatusBar="false"> Frédéric THOMAS > From: webdoubl...@hotmail.com > To: users@flex.apache.org > Subject: RE: [AIR - loadForCompatibility] > Date: Wed, 24 Sep 2014 13:29:15 +0100 > > > &

RE: [AIR - loadForCompatibility]

2014-09-24 Thread Frédéric THOMAS
My bad, I had to add the listener to LoaderInfo instead of Loader, use a child applicationDomain instead of a sibling one and instanciate from the applicationDomain definitions my App before using it. Still exploring... Frédéric THOMAS > From: webdoubl...@hotmail.com > To:

RE: [AIR - loadForCompatibility]

2014-09-24 Thread Frédéric THOMAS
xmlns:s="library://ns.adobe.com/flex/spark"> Do you know why I can't reach ldr_completeHandler ?Frédéric THOMAS > From: webdoubl...@hotmail.com > To: users@flex.apache.org > Subject: RE: [AIR - loadForCompatibility] > Date: Tue, 23 Sep 2014 22:20

RE: [AIR - loadForCompatibility]

2014-09-23 Thread Frédéric THOMAS
Alight, thank you Alex Frédéric THOMAS > From: aha...@adobe.com > To: users@flex.apache.org > Subject: Re: [AIR - loadForCompatibility] > Date: Tue, 23 Sep 2014 21:03:39 + > > > > On 9/23/14 1:56 PM, "Frédéric THOMAS" wrote: > > >> Essential

RE: [AIR - loadForCompatibility]

2014-09-23 Thread Frédéric THOMAS
al application sandbox / security context, I guess it can do the trick moving the rest of the code in a module downloaded by the loaded swf, thought ? Frédéric THOMAS > From: aha...@adobe.com > To: users@flex.apache.org > Subject: Re: [AIR - loadForCompatibility] > Date: Tue,

RE: [AIR - loadForCompatibility]

2014-09-23 Thread Frédéric THOMAS
I will still explore that way tomorrow :-) Thanks, Frédéric THOMAS > From: aha...@adobe.com > To: users@flex.apache.org > Subject: Re: [AIR - loadForCompatibility] > Date: Tue, 23 Sep 2014 18:54:57 + > > IIRC, you can load via URLLoader as a byte array and then use lo

RE: [AIR - loadForCompatibility]

2014-09-23 Thread Frédéric THOMAS
imple data and events, am I wrong ? Frédéric THOMAS > From: aha...@adobe.com > To: users@flex.apache.org > Subject: Re: [AIR - loadForCompatibility] > Date: Tue, 23 Sep 2014 18:54:57 + > > IIRC, you can load via URLLoader as a byte array and then use loadBytes > with t

[AIR - loadForCompatibility]

2014-09-23 Thread Frédéric THOMAS
Hi, Just was wondering if someone has a code example / sample on how to load from a AIR local-trusted sandbox, a remote swf where that swf could use all the AIR API (File, PDF, etc..) ? Thanks, Frédéric THOMAS

RE: Workaround to solve faulty verbose-stacktraces=true compiler parameter

2014-08-23 Thread Frédéric THOMAS
3/Screenshot_2014-08-22-20-19-24.png> > Please remind me where to get the stack trace on android as it doesn't shows up the error dialog for me Frédéric THOMAS > Date: Fri, 22 Aug 2014 13:53:20 -0700 > From: sebastiantor...@gmail.com > To: users@flex.apache.org > Subject

RE: Workaround to solve faulty verbose-stacktraces=true compiler parameter

2014-08-22 Thread Frédéric THOMAS
dialog shown up, so, except with the test direct on the device, it worked as expected and wasn't able to reproduce what you are seeing. Frédéric THOMAS > From: aha...@adobe.com > To: users@flex.apache.org > Subject: Re: Workaround to solve faulty verbose-stacktraces=true compile

RE: Workaround to solve faulty verbose-stacktraces=true compiler parameter

2014-08-22 Thread Frédéric THOMAS
I meant: The result was the same then -debug=true, so, I can see the line numbers Frédéric THOMAS From: webdoubl...@hotmail.com To: users@flex.apache.org Subject: RE: Workaround to solve faulty verbose-stacktraces=true compiler parameter Date: Fri, 22 Aug 2014 15:13:17 +0100 I tried using

RE: Workaround to solve faulty verbose-stacktraces=true compiler parameter

2014-08-22 Thread Frédéric THOMAS
I tried using the SDK 4.6 provided with FB, on a web application, not mobile: -verbose-stacktraces=true -debug=false The result was the same then -debug=false, so, I can see the line numbers Frédéric THOMAS > Date: Fri, 22 Aug 2014 07:07:50 -0700 > From: sebastiantor...@gmail.com >

RE: Workaround to solve faulty verbose-stacktraces=true compiler parameter

2014-08-22 Thread Frédéric THOMAS
ion/s: Adobe Flex SDK 4.5 (Release) And after a test on SDK 4.6, it worked as expected for me. Frédéric THOMAS > Date:

RE: Debugging application with modules

2014-08-06 Thread Frédéric THOMAS
app / libs with debug=true), fdb will trigger you AIR launch and you'll be able to debug it. Frédéric THOMAS > Date: Wed, 6 Aug 2014 06:24:06 -0500 > Subject: Re: Debugging application with modules > From: markzolo...@gmail.com > To: users@flex.apache.org > > Thanks a lot

RE: Can RSLs work in AIR ?

2014-07-25 Thread Frédéric THOMAS
Thanks Alex, just did that and it works. Frédéric THOMAS > From: aha...@adobe.com > To: users@flex.apache.org > Subject: Re: Can RSLs work in AIR ? > Date: Fri, 25 Jul 2014 07:09:22 + > > Package the RSLs in the app dir so you can load them in the sandbox. > > On 7/

RE: Can RSLs work in AIR ?

2014-07-25 Thread Frédéric THOMAS
Hi neverbirth, Actually it works if embarked in the app after some dependencies ordering tweaking but your proposed solution could be one for upcoming libs the modules could use. Thanks, Frédéric THOMAS > Date: Thu, 24 Jul 2014 16:01:30 -0700 > From: neverbi...@gmail.com >

Can RSLs work in AIR ?

2014-07-24 Thread Frédéric THOMAS
Hi guys, I've got an app which consist of a "container" which loads one "module", which particular module to be loaded depends on the user, etc... Until now, the modules were compiled against all their common dependencies (about 15 swc + the framework itself), generating a big swf even using lin

RE: [OT] easyWorker

2014-07-13 Thread Frédéric THOMAS
And was about to forget: https://github.com/doublefx/easyWorker-ActiveAIRCord Requested by the creator of ActiveAIRCord https://github.com/riadvice/ActiveAIRCord , An easy to use library using the Active Record pattern to access SQLite Frédéric THOMAS > From: webdoubl...@hotmail.com &

RE: [OT] easyWorker

2014-07-13 Thread Frédéric THOMAS
/doublefx/easyWorker/tree/PureAS3/moreAS3Demo/MP3Worker Thread based implementation of the original MP3Worker. http://gotoandlearn.com/play.php?id=169 It runs a WAV->MP3 converter in a Thread Enjoy !! Frédéric THOMAS > From: webdoubl...@hotmail.com > To: users@flex.apache.org > Subj

Re: Workers + SharedObject blows up...

2014-07-01 Thread Frédéric THOMAS
I've just been able to test and reproduce the bug with AIR 13.0, I guess it is the same with AIR 14.x, they closed the bug because not enough people voting on, so, please vote to re-open as at time, SharedObject is the only way to share things among workers. -- View this message in context: htt

RE: AW: AW: Maven build failure issue with Flexmojo 6.x

2014-06-24 Thread Frédéric THOMAS
OSMF Frédéric THOMAS > From: agarwala.ar...@gmail.com > Date: Tue, 24 Jun 2014 14:34:09 +0530 > Subject: Re: AW: AW: Maven build failure issue with Flexmojo 6.x > To: christofer.d...@c-ware.de > CC: users@flex.apache.org > > Tha

RE: [OT] easyWorker

2014-06-20 Thread Frédéric THOMAS
Allow now your Runnable to intercept calls from the IThread methods pause(), resume() and terminate(). Enjoy !! Frédéric THOMAS > From: webdoubl...@hotmail.com > To: users@flex.apache.org > Subject: RE: [OT] easyWorker > Date: Fri, 20 Jun 2014 16:09:00 +0100 > > Added comm

RE: [OT] easyWorker

2014-06-20 Thread Frédéric THOMAS
Added command and state work flow implementation, all tests green. Enjoy !! https://github.com/doublefx/easyWorker Frédéric THOMAS > From: webdoubl...@hotmail.com > To: users@flex.apache.org > Subject: RE: [OT] easyWorker > Date: Tue, 17 Jun 2014 12:39:57 +0100 > > Hi João,

RE: [OT] easyWorker

2014-06-17 Thread Frédéric THOMAS
hanks, Frédéric THOMAS > From: joaopedromartinsfernan...@gmail.com > Date: Tue, 17 Jun 2014 12:05:57 +0100 > Subject: Re: [OT] easyWorker > To: users@flex.apache.org > > Great work Fréderic! > > Just a question, the example on external dependencies means that our worker &g

[OT] easyWorker

2014-06-17 Thread Frédéric THOMAS
Hi, I just share this experiment, easyWorker: A Flex / Air lib to easily use Worker (Thread and Runnable). https://github.com/doublefx/easyWorker Frédéric THOMAS

RE: R: R: Alert from Google app store - vulnerable OpenSSL version

2014-06-13 Thread Frédéric THOMAS
It is what I understood too :P Frédéric THOMAS > Date: Fri, 13 Jun 2014 14:01:42 +0100 > From: t...@extravision.com > To: users@flex.apache.org > Subject: Re: R: R: Alert from Google app store - vulnerable OpenSSL version > > On 13/06/14 13:49, Frédéric THOMAS wrote: >

RE: R: R: Alert from Google app store - vulnerable OpenSSL version

2014-06-13 Thread Frédéric THOMAS
1.0.1 and 1.0.2-beta1. Users of OpenSSL servers earlier than 1.0.1 are advised to upgrade as a precaution. OpenSSL 1.0.1 SSL/TLS users (client and/or server) should upgrade to 1.0.1h. Frédéric THOMAS > From: webdoubl...@hotmail.com > To: users@flex.apache.org > Subject: RE: R: R: Ale

RE: R: R: Alert from Google app store - vulnerable OpenSSL version

2014-06-13 Thread Frédéric THOMAS
Yes, it seems to be correct, Adobe is updating its release note about it, see this post [1] comments. Frédéric THOMAS [1] https://forums.adobe.com/message/6455251#6455251 > Subject: R: R: Alert from Google app store - vulnerable OpenSSL version > Date: Fri, 13 Jun 2014 11:11:19 +0200

  1   2   >