RE: No Autocompletion in flashbuilder

2013-11-04 Thread Mark Line
I lost all auto completion once before, for the life of me I couldn't figure out what was wrong. I removed C:\Users\ACCOUNTNAME\Adobe Flash Builder 4.7\cascaded And everything seemed OK. That was on FB 4.6 and on windows 7 though. Before you remove the cascaded folder though be warned you will

Re: No Autocompletion in flashbuilder

2013-11-04 Thread Justin Mclean
Hi, There's a bug in FB that if you turn advance telemetry on it stops auto completion from working. Is this the issue? Thanks, Justin

Could not create module error

2013-11-04 Thread Fréderic Cox
Hi, I have recently migrated an online Flash applications (Content Managing System) from Flex 4.1 to Apache Flex 4.10. I now have a bugreport from a user who receives an error while loading a module: Could not create module (moduleName) I have searched this error on Google and I only find a

Re: Copying ArrayCollections

2013-11-04 Thread mark goldin
By RESET do you mean collectionChange event? On Mon, Nov 4, 2013 at 8:12 AM, Maurice Amsellem maurice.amsel...@systar.com wrote: Personally, I am using a third variant: Target.source = newSource.toArray(); It has the advantage or not breaking any existing collection listeners, and will

Variable Naming Convention

2013-11-04 Thread Tintin
Hello I am about to set sail on a new project and I thought I should try and improve my naming conventions throughout the code. Bad habits are easily carried through from one language/project to the next. I'm particularly trying to nail down an acceptable (I realise that one person's

Re: Could not create module error

2013-11-04 Thread Alex Harui
That sounds like the error from ModuleLoader. The call to create the module class returned null. I've seen that happen when loading a module is restricted by security, or the module is loaded into another application domain. I think you can also cause it by unloading the module or maybe not

RE: Variable Naming Convention

2013-11-04 Thread Gordon Smith
Here's an example of mine: Your example didn't appear in the email. Currently I might name a local variable as 'm_variableName' Naming local variables m_variableName is a bad idea, as m stands for member (i.e. instance). The getter/setter convention used by the Flex framework is private

Re: Memory leaks management in modules

2013-11-04 Thread Alex Harui
If you have time to investigate, the next test is to use flash.text.engine classes in an AS-only project. My guess, though, is that there are static variables in Flex and TLF that may be holding onto something. On 11/4/13 1:10 PM, After24 vinc...@after24.net wrote: Until now, my investigations