[flexcoders] memory leak in converting string to xml

2008-03-29 Thread Ilam Mougy
I am almost giving up on this issue, I don't know any work around. Here is example, in AS:- var strToBeXML:String = 'root.../root';// this is huge string, 20Meg xml for example. myTrace('* memory before xml conversion (A): ' + System.totalMemory); var xmlObj:XML = new XML(strToBeXML);

[flexcoders] Re: memory leak in converting string to xml

2008-03-29 Thread Ilam Mougy
way to convert to xml and avoiding the string route. Anyone? Thanks, --- In flexcoders@yahoogroups.com, Ilam Mougy [EMAIL PROTECTED] wrote: I am almost giving up on this issue, I don't know any work around. Here is example, in AS:- var strToBeXML:String = 'root.../root';// this is huge

[flexcoders] Re: memory leak in converting string to xml

2008-03-30 Thread Ilam Mougy
] On Behalf Of Ilam Mougy Sent: Saturday, March 29, 2008 6:26 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: memory leak in converting string to xml Well, it looks like this is a known deferred issue. Looks like the player (not the Flex sdk) is the one that leaks when you

[flexcoders] Re: memory leak in converting string to xml

2008-03-30 Thread Ilam Mougy
that it will perform well. but it will do it. This is true for any language - the effect is just more evident in ActionScript. Rick Winscot From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ilam Mougy Sent: Saturday, March 29, 2008 12:49 AM

[flexcoders] Re: memory leak in converting string to xml

2008-03-31 Thread Ilam Mougy
see this 'leak' at all. Have you tried any alternate paths to load the data? Rick Winscot From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ilam Mougy Sent: Saturday, March 29, 2008 9:26 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: memory

[flexcoders] Re: memory leak in converting string to xml

2008-03-31 Thread Ilam Mougy
for any language – the effect is just more evident in ActionScript. Rick Winscot From: [EMAIL PROTECTED] ups.com [mailto:flexcoders@ yahoogroups. com] On Behalf Of Ilam Mougy Sent: Saturday, March 29, 2008 12:49 AM To: [EMAIL PROTECTED] ups.com Subject: [flexcoders] memory leak

[flexcoders] Re: memory leak in converting string to xml

2008-03-31 Thread Ilam Mougy
. Let me say it this way. I don't know when AVM2 goes through a collection cycle. I really don't care. as long as it gets done. Bad code performs badly. consistently. Rick Winscot From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ilam Mougy Sent: Monday

[flexcoders] Re: Reading Parsing Large XML File . . .

2008-04-15 Thread Ilam Mougy
Large XML data in Flash player have lots of issues. I thoroughly investigated the issue and I posted a bug here (https://bugs.adobe.com/jira/browse/SDK-15113). It shows that you can't repeatedly download more than 3M of xml and have your browser stable, it will crash. There are leaks when you

[flexcoders] Flex 3 purchased version, still displays Trial water mark...

2008-04-15 Thread Ilam Mougy
I downloaded the trial version, worked with it a bit, then I purchased the package. I put the serial number but I am still having the Trial water mark on the charts. I uninstalled and installed from the DVD, still I have the water mark issue. I can't imagine I am the only one who did that and

[flexcoders] Re: Flex 3 purchased version, still displays Trial water mark...

2008-04-15 Thread Ilam Mougy
, right? Only Pro will remove the watermark. Matt On 4/15/08 1:37 PM, Ilam Mougy [EMAIL PROTECTED] wrote: I downloaded the trial version, worked with it a bit, then I purchased the package. I put the serial number but I am still having the Trial water mark on the charts. I

[flexcoders] Re: Flex 3 purchased version, still displays Trial water mark...

2008-04-16 Thread Ilam Mougy
because of this! Ilam --- In flexcoders@yahoogroups.com, Josh McDonald [EMAIL PROTECTED] wrote: Checked license.properties in: /Applications/Adobe\ Flex\ Builder\ 3/sdks/3.0.0/frameworks/ -J On Wed, Apr 16, 2008 at 3:49 PM, Ilam Mougy [EMAIL PROTECTED] wrote: I tried that. I tried

[flexcoders] copying large amount of data using System.setClipboard() in Flash 10.

2008-11-24 Thread Ilam Mougy
I understand the security issue that Adobe fixed in Flash 10. In Flash 9, when it comes time to copy large amount of data and to avoid the time out issue in browsers I used to chunk the data and call callLater(foo) to allow for a progress bar while copying the data (and a cancel button). Now,

[flexcoders] Re: copying large amount of data using System.setClipboard() in Flash 10.

2008-11-24 Thread Ilam Mougy
] wrote: How do you append to the clipboard? On Tue, Nov 25, 2008 at 8:23 AM, Ilam Mougy [EMAIL PROTECTED] wrote: I understand the security issue that Adobe fixed in Flash 10. In Flash 9, when it comes time to copy large amount of data and to avoid the time out issue in browsers I used

[flexcoders] Re: copying large amount of data using System.setClipboard() in Flash 10.

2008-11-26 Thread Ilam Mougy
@yahoogroups.com [mailto:flexcoders@yahoogroups.com mailto:flexcoders@yahoogroups.com ] On Behalf Of Ilam Mougy Sent: Monday, November 24, 2008 11:35 PM To: flexcoders@yahoogroups.com mailto:flexcoders@yahoogroups.com Subject: [flexcoders] Re: copying large amount of data using System.setClipboard

[flexcoders] Unreliable Local SharedObject in Flash 10!!!!

2009-01-14 Thread Ilam Mougy
I searched the list for this issue and didn't find anything related. I have an app that saves a big file to the local SharedObject, I chunk it so I can display a progress bar, each chunk is 1M, I have 60 Meg of data. This worked flawless in Flash 9 (expected ha!), but with Flash 10, sometimes it

[flexcoders] Best approach for Dynamic UI generation from XML...

2009-04-03 Thread Ilam Mougy
I have a task of dynamically generating Flex UI forms from XML. I am free to design the look of the XML to be whatever I like. Is there a best approach to this problem, other than iterating over the XML and one by one creating objects that maps to Flex UI elements? Thanks,