Hi, Today I mentioned about ignoring the warning: ReferenceError: Error #1056: Cannot create property
While I'm building and testing my application, I'm seeing the performance slowing down, until I added a new dropdownlist and now it takes about a minute to only 200 records on the dropdownlist and the page freezes completely. I found that this is related to this warning because this value object has many properties that I'm intentionally ignoring and the trace is slow. So, I commented out the line trace('ReferenceError: Error #1056: Cannot create property ' + prop + ' on ' + localTraits.qName); at AMFContext.as and now the dropdown load the data instantly without any break. OK, this will only happen in debug mode, even so, it's not viable to wait about one minute everytime I test a new build. Would be nice to ignore this warning for this specific project but I don't know what's the best practice to do this (meanwhile I will do a monkey patch on my side to solve this issue without being forced to comment the line everytime I update Royale and build).