Memory leaks management in modules

2013-10-31 Thread After24
Hello list, I'm working on a modular application where all services and value objects are stored in a RSL. The inconvenient with this organization is that when a value object alias is registered by a module during an AMF call it cause a memory leak revealed by a console warning : warning: The

Re: Memory leaks management in modules

2013-10-31 Thread After24
Flash Player issue. -Darrell On Thu, Oct 31, 2013 at 9:50 AM, After24 vinc...@after24.net wrote: Hello Darrell, Thank you for you answer. when you say Darrell Loverin-2 wrote So I think it is safe to ignore the warning which I believe was removed from the SDK (don't know the version) Does

Re: Memory leaks management in modules

2013-10-31 Thread After24
was actually leaking or just concerned about the warning? BTW the warning is only compiled into the application when the application is compiled for debug. @Alex, do you remember this issue and if it was fixed in the Flash Player. -Darrell On Thu, Oct 31, 2013 at 12:36 PM, After24 vinc

Re: Memory leaks management in modules

2013-11-02 Thread After24
if there is still a problem. -Alex On 11/2/13 4:11 AM, After24 vinc...@after24.net wrote: Hello, I found out that the memory leak is caused by the focus manager. So concerning the warning about the module calling net.registerClassAlias() - the module is garbage collected even when those warnings pops up

Re: Memory leaks management in modules

2013-11-02 Thread After24
8:53 AM, After24 vinc...@after24.net wrote: The main app contains the TextInput to wich I give focus before unloading the module. I replaced it with a button but it changes nothing. I tried the pure actionScript version with a textflow. I added to the flowComposer a ContainerController based

Re: Memory leaks management in modules

2013-11-02 Thread After24
persists. It could be that TLF sets up the flash.text.engine classes in a way that references are kept to TextLines and/or their containers. -Alex On 11/2/13 8:53 AM, After24 vinc...@after24.net wrote: The main app contains the TextInput to wich I give focus before unloading the module. I replaced

Re: Memory leaks management in modules

2013-11-03 Thread After24
Done. https://issues.apache.org/jira/browse/FLEX-33873 Le 03/11/13 04:06, Alex Harui a écrit : OK, file a bug with a simple test case. -Alex On 11/2/13 9:57 AM, After24 vinc...@after24.net wrote: Alex, The module can be garbage collected when a flash.text.TextField is used instead

Re: Memory leaks management in modules

2013-11-05 Thread After24
AM, After24 vinc...@after24.net wrote: Hello Alex, Creating a TextInput component based on FTE is not an easy task given the low level nature of this engine. Maybe a framework like TinyTLF which has no dependancies with TLF can be used to check that the memory leak comes from TLF or FLEX ? Le

Re: Memory leaks management in modules

2013-11-05 Thread After24
, After24 vinc...@after24.net wrote: Hello Alex, Creating a TextInput component based on FTE is not an easy task given the low level nature of this engine. Maybe a framework like TinyTLF which has no dependancies with TLF can be used to check that the memory leak comes from TLF or FLEX ? Le 04

Re: Memory leaks management in modules

2013-11-07 Thread After24
On 11/5/13 2:18 PM, After24 vinc...@after24.net wrote: I have updated the testCase by adding a flash text engine based text field. When this text field is clicked, the text of the TextElement is replaced and the TextLine is updated using the TextBlock.recreateTextLine() method. After this process

Re: Easy way to remove TLF text cursor?

2014-02-02 Thread After24
Hi Harbs, If you need a non-editable TextFlow, you just have to set his interaction manager to null. Vincent. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Easy-way-to-remove-TLF-text-cursor-tp4744p4750.html Sent from the Apache Flex Users mailing list

Skinning issue

2014-03-14 Thread After24
Hello, I have an issue with a component I'm working on which extends TitleWindow : If I call setStyle(skinClass, TheNewSkinClass) on this component after its initialization, the contentGroup of the new skin is empty. Is it a normal behavior ? Thank you. -- View this message in context:

Re: Skinning issue

2014-03-14 Thread After24
Hi Mark, thank you for your response. No the width and height of the component are not percent based. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Skinning-issue-tp5522p5536.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

Re: Skinning issue

2014-03-14 Thread After24
buttonMode=true useHandCursor=true mouseEnabled=true width=10 height=10 s:BitmapImage source=@Embed(source='fr/after24/tests/assets/moveArea.png') / /s:Group

Re: Skinning issue

2014-03-14 Thread After24
Hi OmPrakash, So this is a normal behavior for a component that inherits from SkinnableContainer ? When a new skin is applied to that type of component the childrens of the old skin contentGroup are not automatically added to the one from the new skin ? Thank you. -- View this message in

Re: Skinning issue

2014-03-14 Thread After24
Ok, Will check. Thank you Om. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Skinning-issue-tp5522p5545.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

Re: Skinning issue

2014-03-16 Thread After24
My bad, The problem was due to a design flaw in the custom component. Thank you Mark and Om. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Skinning-issue-tp5522p5559.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

Re: GCM in Flex mobile app

2014-04-01 Thread After24
Hello, You can use http://distriqt.com/product/air-native-extensions/push-notifications http://distriqt.com/product/air-native-extensions/push-notifications or http://myappsnippet.com/gcm/ http://myappsnippet.com/gcm/ -- View this message in context:

Re: Coding a better flex mobile app

2014-04-02 Thread After24
Hello, From my personal experience, it's not possible to get a super fluid app using flex mobile (especially on mid range phones and tablets). I think this perception is mainly due to the list component which never reaches 50/60 fps even when its itemRender is well optimized. I know that this

RE: Coding a better flex mobile app

2014-04-02 Thread After24
Hi Maurice, No that's not true, The 24 fps limit is a misconception. In fact some studies shows that the amelioration of movements perception by human eyes can be improve until 120 fps ( http://onlinelibrary.wiley.com/doi/10.1889/1.2433276/abstract

Re: Coding a better flex mobile app

2014-04-02 Thread After24
Hi Gabriele, Feather UI works on top of the Starling framework, I use it to for the user interface. Robotlegs and AS3 signal helps me to implement MVC architecture. For handling remote operations I use rpc.swc (wich has a dependency with framework.swc) of the flex framework. You can find

RE: Coding a better flex mobile app

2014-04-02 Thread After24
simple UI working properly. Do you want to post some code so that we can test and figure out what is going on? Thanks, Om On Apr 2, 2014 6:38 AM, After24 lt; vincent@ gt; wrote: Hi Mark, Yes but like you said it's a Nexus 5... and it will probably take time before this level

Re: Coding a better flex mobile app

2014-04-02 Thread After24
Hi Javier, To be honest I never tried to change the framerate of the application... I'm feeling a bit stupid now :-) Will try with an app on a Nexus S and a nexus 4. Thanks. -- View this message in context:

RE: Coding a better flex mobile app

2014-04-07 Thread After24
Hello, So, following Javier advise regarding application framerate, I built a benchmark to show how framerate acts on list scrolling smoothness. May be I missed something (.apk and source code can be found here : https://issues.apache.org/jira/browse/FLEX-34213

Re: Coding a better flex mobile app

2014-04-07 Thread After24
, 2014 at 3:03 PM, After24 lt; vincent@ gt; wrote: Hello, So, following Javier advise regarding application framerate, I built a benchmark to show how framerate acts on list scrolling smoothness. May be I missed something (.apk and source code can be found here : https://issues.apache.org

RE: Coding a better flex mobile app

2014-04-07 Thread After24
Maurice, The app displays a framerate monitor based on mr Doob/Hi-Res-Stats. Maurice Amsellem wrote Hi After24, I noticed (without trying, just reading the source) that your app displays the *desired* fps (stage.frameRate) but not the *actual* framerate. It would be nice to provide

Re: Coding a better flex mobile app

2014-04-07 Thread After24
Javier, Setting renderMode to direct has a significant impact, scrolling fps is now comprise between 40 and 46 fps. I'm using The spark LabelItemRenderer which is based on StyleableTextField for the label. -- View this message in context:

Re: Coding a better flex mobile app

2014-04-07 Thread After24
I don't understand is this not the already the case with the LabelItemRenderer ? (cacheAsBitmap is set to true in the constructor). Javier Guerrero García wrote :) wait until you enable caching and disable backgrounds ;) El lunes, 7 de abril de 2014, After24 lt; vincent@ gt; escribió

Re: Coding a better flex mobile app

2014-04-07 Thread After24
are you talking about a 300k component ? it's only 150 loc. Javier Guerrero García wrote Questioning.stop(); Trying.start(); ;) And you should use stagetext instead, but thats just my opinion ;) El lunes, 7 de abril de 2014, After24 lt; vincent@ gt; escribió: I don't understand

Re: Coding a better flex mobile app

2014-04-08 Thread After24
the FPS :) 4-5 tags in ONE plain MXML file would be more than enough for such benchmark :) Max 1-2k's uncompressed :) On Mon, Apr 7, 2014 at 5:01 PM, After24 lt; vincent@ gt; wrote: You have a very single way to communicate, anyway... When you say : wait until you enable caching

RE: textflow configuration manageTabkey

2014-04-29 Thread After24
Hi Miguel, Another option may be to handle the tab key by assigning a custom EditManager (extending flashx.textLayout.edit.EditManager) to the TextFlow : /public class CustomEditManager extends EditManager { override public function

Flash builder internal error

2014-05-20 Thread After24
Hello, I am facing an issue with flash builder which doesn't compile my project anymore : It displays the message an internal build error has occured. I tried to search for missing semi colons, empty switch(){} statements, everything I could find on the web regarding this error but nothing seems

RE: Flash builder internal error

2014-05-20 Thread After24
Hello Patil, Thank you for your answer. Already tried this but it doesn't work. I think there's a character or a group of characters in one of the projects classes that causes the compiler derailing. -- View this message in context:

RE: Flash builder internal error

2014-05-20 Thread After24
Hello Om, Just checked with regular expressions for misspelled metadata tags but found nothing. Thanks. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Flash-builder-internal-error-tp6511p6525.html Sent from the Apache Flex Users mailing list archive at

Re: Flash builder internal error

2014-05-20 Thread After24
Hello Lee, Just tried with the -clean parameter in the FlashBuilder.ini but the error is still here. Thank you. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Flash-builder-internal-error-tp6511p6526.html Sent from the Apache Flex Users mailing list archive

Re: Flash builder internal error

2014-05-20 Thread After24
The strange thing about this error is that it occurs suddenly. So it must be related to a change in one of the project files. Unfortunately I shut down Flash Builder like I usually do when strange errors like this one happens so I lost the possibility to undo changes (and the project which is a

Re: Flash builder internal error

2014-05-20 Thread After24
Hello Alex, The project isn't too big (32 classes) and I'm afraid I will have to do like you said, using the step by step method... There is some complicated regular expressions in a class, I will check on this side. Thank you. -- View this message in context:

Re: Flash builder internal error

2014-05-20 Thread After24
Unfortunately, I'm not confortable with Java code. I Will stick to the step by step methodology :-) Thank you Alex. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Flash-builder-internal-error-tp6511p6531.html Sent from the Apache Flex Users mailing list

Re: Flash builder internal error

2014-05-20 Thread After24
Ok. I will post as soon as I find the culprit, if it can help someone else. Thanks. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Flash-builder-internal-error-tp6511p6533.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

Re: Flash builder internal error

2014-05-20 Thread After24
I wasn't aware of this functionality. Unfortunately the older revision is posterior to the problem. Thank you. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Flash-builder-internal-error-tp6511p6536.html Sent from the Apache Flex Users mailing list archive at

Re: Flash builder internal error

2014-05-20 Thread After24
Hello Simon, Not it can't be SVN, I use GIT (and the source folder is registered in the .gitignore). Thanks. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Flash-builder-internal-error-tp6511p6537.html Sent from the Apache Flex Users mailing list archive at

ItemRenderer declaration in MXML

2014-07-19 Thread After24
Hello, I'm building a custom component with an itemRenderer public property : public function get itemRenderer():IFactory { return _itemRenderer; } public function set itemRenderer(value:IFactory):void { _itemRenderer = value; . } So the setter is

Re: ItemRenderer declaration in MXML

2014-07-20 Thread After24
Hi Alex, Will give it a try. Thank you. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/ItemRenderer-declaration-in-MXML-tp7339p7343.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

Re: ItemRenderer declaration in MXML

2014-07-21 Thread After24
You are right Alex, It works automatically, very cool. Thank you. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/ItemRenderer-declaration-in-MXML-tp7339p7346.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

Re: straw poll - which platform do you publish to?

2014-09-17 Thread After24
Hello, Our use of flex is : Desktop projects : 90 % Mobile projects : 10 % Vincent. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/straw-poll-which-platform-do-you-publish-to-tp8008p8055.html Sent from the Apache Flex Users mailing list archive at

Re: New 3rd Party Flex Library

2014-09-17 Thread After24
Hello, I have played with the demo, everything looks great ! I am very impressed by the number of components included in the libary, how large is your team ? Vincent. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/New-3rd-Party-Flex-Library-tp8005p8056.html

Can't compile on device in Intellij

2014-10-17 Thread After24
Hello, I'm facing a problem with intellij where I can't compile an AIR mobile project directly on my android device. An Alert shows up with the message : Check AIR Version 15.0.0.249. I guess it's a configuration issue but I can't find how to solve it. Any idea ? Thank you. -- View this

Re: Can't compile on device in Intellij

2014-10-17 Thread After24
Thank you Alexander ! Will try to update. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Can-t-compile-on-device-in-Intellij-tp8440p8442.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

Re: Can't compile on device in Intellij

2014-10-17 Thread After24
It was a quick response by the way. Class A support :-) -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Can-t-compile-on-device-in-Intellij-tp8440p8443.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

Re: Can't compile on device in Intellij

2014-10-17 Thread After24
It works ! Thank you Alexander. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Can-t-compile-on-device-in-Intellij-tp8440p8446.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

Re: Parsley 3.0, Data Binding and IOC

2014-11-07 Thread After24
Hi David, I switched from Parsley 2.4 to 3.0 on a new project (one year ago) and I'm very happy with it. The introduction of the Command framework in Parsley 3.0 totally worth the switch. Vincent. -- View this message in context:

FlatSpark

2015-04-14 Thread After24
Hello, I'm working on a flex mobile project in Intellij and I don't understand why the default skins are the old spark skins in the simulator and the new flatSpark skins when the application is executed on my android device. Am I missing something ? Thank you. -- View this message in

Re: Parseley and [MessageHandler]

2015-09-09 Thread After24
Hi Christofer, You picked the right zombie, Parsley is a fantastic ioc framework, especially since version 3.0 which added the new command framework. I don't think that you can use the [MessageHandler] tag in a class that hasn't been added the context, except by using the messaging API like you

Re: Unable to use Iphone simulator

2016-01-31 Thread After24
Hi, Just overlayed flex 4.15.0 with the latest AIR beta SDK (http://labs.adobe.com/downloads/air.html ) and the iPhone simulator works fine now. Vincent. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Unable-to-use-Iphone-simulator-tp11808p11873.html Sent

Re: Browser close event

2016-02-29 Thread After24
Same here, using javascript is not a reliable technique. We manage concurrent access on our application by calling a "I'm still active" method on the server at constant interval. Vincent. -- View this message in context:

Re: iPhone 6s+ black bars at top and bottom of App

2016-03-05 Thread After24
Hi Phil, Yes, black bars appears when the following splash screen files are missing : Default@2x~iphone.png Default-375w-667h@2x~iphone.png Default-568h@2x~iphone.png Default~iphone.png Cheers. Vincent. -- View this message in context:

Re: updating flex sdk for intellij by own

2016-05-07 Thread After24
Hi, The overlay process is explained here : https://helpx.adobe.com/x-productkb/multi/how-overlay-air-sdk-flex-sdk.html -- View this message in context:

Inconsistent RPC Fault

2016-07-05 Thread After24
Hello, Working with AMFPHP on a mobile project, I get an inconsistent error when a https service method is called : RPC Fault faultString="Echec de l'envoi" faultCode="Client.Error.MessageSend" faultDetail="Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Failed Usually the error

Re: Inconsistent RPC Fault

2016-07-06 Thread After24
The problem is that the error message is very vague and doesn't gives much informations about why it happens. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Inconsistent-RPC-Fault-tp12946p12951.html Sent from the Apache Flex Users mailing list archive at

Getting the exact screen density on AIR mobile

2016-12-08 Thread After24
Hello, I'm working on a project for which I need to get the exact screen density of the device but Capabilities.screenDPI doesn't seems to return a precise value. For example, the constructor specifications of my phone give 401 PPI but Capabilities.screenDPI returns 480 PPI. Does anyone knows if

Re: Getting the exact screen density on AIR mobile

2016-12-09 Thread After24
Hello, For those who are interested by this subject, I asked yesterday to Michael Archbold from Distriqt if a would be possible to add this feature to their Application ANE and he did it 3 hours later ! API is very simple :

Re: Various questions about FlexJS

2017-08-10 Thread After24
Hi Alex, Our biggest application is composed of 20 modules and 8 runtime shared librairies. Aside from a clear separation of functionalities inside the application, the use of modules and RSLs results in a significant decrease of the compiltaion duration when working on a single module of the

Re: Various questions about FlexJS

2017-08-10 Thread After24
Hello harbs and Piotrz, => The main goals of using modules in our workflow are in order of priority : 1 - reduce compilation duration 2 - obtaining a clear separation of code 3 - reduce application loading time for users 1 is very important in our case, if we compile all module at the same

Re: FlexJS IDE integration

2017-08-08 Thread After24
Josh, I remove all references to /frameworks/ in the global library except frameworks/libs. The compilation seems to be ok but Intellij displays an error message Here are some screen shots -- View this message in context:

Re: FlexJS IDE integration

2017-08-09 Thread After24
Hi Josh, hi Alex, Thank you for your help, it works fine now. I was just annoyed after installing the JetBrain debugging support extension by a message triggered by chrome on a yellow bar saying that "JetBrains IDE Support is debugging this tab". For those whor are interested, there is a way to

Re: FlexJS IDE integration

2017-08-08 Thread After24
FlexJS]: : interface method removeEventListener in interface IEventDispatcher is implemented with an incompatible signature in class Main Error:[helloWorldFlexJS]: : interface method dispatchEvent in interface IEventDispatcher is implemented with an incompatible signature in class Main /Users/vincent

Re: FlexJS IDE integration

2017-08-08 Thread After24
Josh, I set the -targets to JSFlex without success. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/FlexJS-IDE-integration-tp15638p15652.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

Re: FlexJS IDE integration

2017-08-08 Thread After24
Josh, I removed both frameworks/libs/player and frameworks/libs/air (/frameworks/libs was already referenced) It still doesn't work. Alex, I tried to add -allow-subclass-overrides=true in the additional compiler options field (not sure about that) with no results. Thanks to both of you.

Re: FlexJS IDE integration

2017-08-08 Thread After24
Hello Olaf, hello Piotrz, Thank you. I would prefer to use Intellij which is a fantastic IDE (I tried vscode mainly by cursiosity). I think the Intellij integration issue is fixed in the latest version of the SDK but I don't know how to get it. Vincent. -- View this message in context:

FlexJS IDE integration

2017-08-08 Thread After24
Hello, I finally found the time to try FlexJS but I'm stuck with IDE issues. I'm working with Intellij 2017 and flash builder for existing projects maintenance but I don't want to use it for new projects. I first tried to setup the helloWord sample provided with the flexjs 0.8.0 sdk in Intellij

Re: FlexJS IDE integration

2017-08-08 Thread After24
Hi Josh, Thank you for the solution, I will try again to run helloWorld again :-) Vincent. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/FlexJS-IDE-integration-tp15638p15646.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

Re: FlexJS IDE integration

2017-08-08 Thread After24
tcher is implemented with an incompatible signature in class Main Error:[helloWorldFlexJS]: : interface method dispatchEvent in interface IEventDispatcher is implemented with an incompatible signature in class Main /Users/vincent/development/After24/lab/helloWorldFlexJS/src/Main.mxml Error:Err

Re: FlexJS IDE integration

2017-08-08 Thread After24
with an incompatible signature in class Main /Users/vincent/development/After24/lab/helloWorldFlexJS/src/Main.mxml Error:Error:[helloWorldFlexJS]: interface method element in interface IRenderedObject not implemented by class Main Error:Error:[helloWorldFlexJS]: interface method

Re: FlexJS IDE integration

2017-08-08 Thread After24
in class Main Error:[helloWorldFlexJS]: : interface method dispatchEvent in interface IEventDispatcher is implemented with an incompatible signature in class Main /Users/vincent/development/After24/lab/helloWorldFlexJS/src/Main.mxml Error:Error:[helloWorldFlexJS]: interface method element in inter

Re: Optimize speed on Android

2017-06-16 Thread After24
Hi, You can optimize a bit more by setting the Color depth to 16 bit in the XML app descriptor. 16bit The gain is not huge but not neglictable if your app manipumates bitmap objects. you can also set : stage.frameRate to 60; stage.quality to StageQuality.LOW; Scroller.maxDragRate to 80

Re: Firefox no longer running Flash debug version

2017-09-06 Thread After24
Hi, The problem is due to the last release of Firefox. It seems that only http:// and https:// url are now authorized to execute flash content. The turnaround (on Mac OS). Removing firefox package from the application folder Removing the /Users//Library/Caches/Firefox folder Installing Firefox

Re: Firefox no longer running Flash debug version

2017-09-06 Thread After24
Hi Rodolpho, Your solution is way simpler than mine :-) Nonetheless, I recommend every flash devs to deactivate automatic updates on firefox and to use it only for development purpose. Vincent. -- Sent from: http://apache-flex-users.246.n4.nabble.com/

Re: Verify error #1014

2017-11-27 Thread After24
Alex Harui-2 wrote > Are you set up to use RSLs? Are there modules involved? Generate > link-reports and see what it says about ItemRenderer. Yes I think so. Alex Harui-2 wrote > Generate link-reports and see what it says about ItemRenderer. I use the link-report compiler option of mxmlc but

Re: Verify error #1014

2017-11-27 Thread After24
Hi Jay, I will try the brute force approach :-) thanks. Vincent. -- Sent from: http://apache-flex-users.246.n4.nabble.com/

Re: Verify error #1014

2017-11-25 Thread After24
Hi, I'm still stuck with this verify error that drives me nut... VerifyError: Error #1014: Class spark.components.supportClasses::ItemRenderer cannot be found. I don't understand why the error points to the ItemRenderer Class of the spark package ? If someone as a solution or an idea ? Thank

Verify error #1014

2017-11-22 Thread After24
Hello, I'm trying to reinstall a project (Flash builder) on a new Imac. Compilation is fine but I get the following error at execution: VerifyError: Error #1014: Class spark.components.supportClasses::ItemRenderer cannot be found. SDK used is 4.13 After 2 hours of search, I cannot find the

Re: Flash Builder 4.7 crash

2017-11-29 Thread After24
Hello Jesper, Yes, it seems that Flash Builder and High Sierra don't get along well. I already observed other critical bug, for example you can't add a SWC library to a project in the Flex Build Path tag of the properties panel because the browse button don't launch the file browser anymore. I

Re: Flash Builder 4.7 crash

2017-11-29 Thread After24
Hi Alex, I wasn't aware of that procedure to get FB to run on java 8. Are you working on FB 4.7 premium ? Vincent. -- Sent from: http://apache-flex-users.246.n4.nabble.com/

Re: Flash Builder 4.7 crash

2017-11-29 Thread After24
Alex, Sorry for my english, it's a bad translation of "travailler sur" in french :-) I meant are you using flash builder 4.7 to code ? Thank you. Vincent. -- Sent from: http://apache-flex-users.246.n4.nabble.com/

Re: Verify error #1014

2017-11-22 Thread After24
Hello Alex, Thank you for your answer. I set up the project by copying the source folder from my old computer to the new. On my old computer I have the 4.6 version of FB. On the new one I installed the 4.7 premium version from Adobe creative cloud. I thought that the version difference was the

Re: Display mathematical formulas in Flex Mobile/Air

2017-12-08 Thread After24
Hi Chris, We saw this library during our investigations too :-) but since we needed to display both mathematical and chemical formulas we finally choose the inline graphic approach. Could you give a feed back on the library if you use it on your project ? Vincent. -- Sent from:

Re: TLF - Edit image

2017-12-11 Thread After24
Hi Hugo, I believe that the modifyInlineGraphic method needs the selectionSate to operate properly, you should try something like this : /var state:SelectionState = new SelectionState(textFlow, inlineGraphicElement.getAbsoluteStart(), inlineGraphicElement.getAbsoluteStart() + 1);

Re: Display mathematical formulas in Flex Mobile/Air

2017-12-06 Thread After24
Hello Christian, No easy way I'm afraid. We use the InlineGraphicElement object of the TextLayout Framework to display complicated formulas. Vincent. -- Sent from: http://apache-flex-users.246.n4.nabble.com/

Loading modules from an AIR desktop app

2018-05-15 Thread After24
Hi, In the process of migrating a large application to a desktop AIR application I'm having difficulties with modules : the application is composed of several libraries and 15 modules. Everything work fine when running the app from the IDE (Intellij) where main swf and modules are generated in

Publishing certified AIR application for desktop

2018-05-16 Thread After24
Hi, In the process of migrating a web Flex application to a desktop AIR application, I'm struggling with the certification process. My goal is to publish a native installer (not a captive runtime bundle) for MacOs and Windows. On Mac OS, the application will be distributed outside of the Mac app

Re: [Discussion] Life after FlashPlayer

2018-05-15 Thread After24
Hi, This article is similar to the dozens of other ones involving flash, flash player, flex and death... most of the time written by people who don't know a lot about the flash/flex ecosystem. /" In addition to Flash, they are also going to stop support for Flex, which is a framework for

Re: Optimize speed on Android

2018-06-26 Thread After24
Hello, Going beyond 60 for maxDragRate will not improve dragging performance. This parameter has no effect on the scrolling after the user releases his touch on the screen and the view continues to scroll due to the inertia. Using AS3 item renderers instead of mxml with flash displayObjects only

Re: Optimize speed on Android

2018-06-27 Thread After24
I use exclusively the Greensock TweenLite library for animation. Vincent. -- Sent from: http://apache-flex-users.246.n4.nabble.com/

Re: Optimize speed on Android

2018-06-27 Thread After24
Lydecker, I would recommend to use UIComponent instead of LabelItemRenderer to make your item renderers as lightweight as possible. In My case, I create a MobileItemRender base class that extends UIComponent and implements the required interface IItemRenderer. Vincent. -- Sent from:

Re: Optimize speed on Android

2018-06-27 Thread After24
Hello, I also noticed that performance vary significantly on android between devices, even between devices with comparable hardware. I don't have any explanation for the data processing performance degradation when renderMode is set to gpu. Complicated views can take a while to initialize, you

Re: Life after FlashPlayer, are you prepared?

2018-05-02 Thread After24
Hi, We are a team of two people working fulltime since 2011 on three flex applications for a single client. These three applications represents a huge amount of work so developping HTML5 substitutes is not an option for the client regarding costs and time involved. Decision has be taken to

Re: Flex Calendar

2018-07-25 Thread After24
Hi Hugo, This one is not longer supported but works quite well : http://www.flex-component.com/flex-components/kc-calendar Vincent. -- Sent from: http://apache-flex-users.246.n4.nabble.com/

Re: Restarting an AIR desktop application

2018-07-05 Thread After24
Hi Alex, Hi Om, Thank you both for your answers. Alex I gave a try to your solution by creating a simple launcher.app When it's update is complete, the main application open the launcher app using the "usr/bin/open" command and closed itself, than the launcher.app re open the main application

Restarting an AIR desktop application

2018-07-04 Thread After24
Hello, I need the AIR application I'm working on to be able to restart itself after an update process. The way to achieve this seems to be : /var productManager:ProductManager = new ProductManager("airappinstaller"); productManager.launch("-launch " +

Re: Restarting an AIR desktop application

2018-07-04 Thread After24
hi Alex, It means the user will have to install to applications ? -- Sent from: http://apache-flex-users.246.n4.nabble.com/

  1   2   >