RE: [Flashcoders] Process issue

2010-03-29 Thread Lehr, Theodore
To: Flash Coders List Subject: RE: [Flashcoders] Process issue The problem is that the function is taking too long to do that... like I have: function buildXML(_xml:*):void { . . buildXML(ixml); trace(""); } trace("

Re: [Flashcoders] Process issue

2010-03-29 Thread Nathan Mynarcik
_ From: flashcoders-boun...@chattyfig.figleaf.com [flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of p...@ipauland.com [p...@ipauland.com] Sent: Monday, March 29, 2010 8:44 AM To: Flash Coders List Subject: Re: [Flashcoders] Process issue Generally.. var myXML:XML = X

Re: [Flashcoders] Process issue

2010-03-29 Thread kennethkawam...@gmail.com
> > > > From: flashcoders-boun...@chattyfig.figleaf.com > [flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of p...@ipauland.com > [p...@ipauland.com] > Sent: Monday, March 29, 2010 8:44 AM > To: Flash Coders List > Subject: Re

RE: [Flashcoders] Process issue

2010-03-29 Thread Lehr, Theodore
om: flashcoders-boun...@chattyfig.figleaf.com [flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of p...@ipauland.com [p...@ipauland.com] Sent: Monday, March 29, 2010 8:44 AM To: Flash Coders List Subject: Re: [Flashcoders] Process issue Generally.. var myXML:XML = XML(something); buildXML(myXML); // now

Re: [Flashcoders] Process issue

2010-03-29 Thread p...@ipauland.com
Generally..     var myXML:XML = XML(something);   buildXML(myXML); // now all XML is processed  callotherfunction();       function buildXML(xml:XML) { .. if (something){       buidlXML(someXML); }       On 29 March 2010 at 14:13 "Lehr, Theodore" wrote: > I have a function that is building some