RE: [flexcoders] What is the Flex solution to missing threads?

2007-05-30 Thread Tracy Spratt
:17 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] What is the Flex solution to missing threads? I have an xml file that I load and parse. This parsing takes some time. It takes enough time that the GUI blocks momentarily. Normally I would send the xml parsing off in it's own thread

Re: [flexcoders] What is the Flex solution to missing threads?

2007-05-30 Thread Robert Cadena
Hi Aaron, you'll have to split up your function so that it performs work in small chunks then schedules itself to be called later with 'callLater'. I ran into this problem when I wrote my syntax highlighting lib. So I split up the scanning function into a class of its own, with the previously