[flexcoders] Delay recursive function

2008-05-13 Thread Nicholas
I've looked for other threads on this, but haven't found anything that has really helped me yet. I've made a sorting function that dispatches an event every time it swaps values in an array. The eventlistener calls a function that updates a display to show visually how the array has changed. The

Re: [flexcoders] Delay recursive function

2008-05-13 Thread Paul Andrews
If you move sort(a, l, i-1); sort(a, i+1, r); into the event handler, you should have what you want. Paul - Original Message - From: Nicholas [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, May 13, 2008 6:07 AM Subject: [flexcoders] Delay recursive function

RE: [flexcoders] Delay recursive function

2008-05-13 Thread Alex Harui
Or callLater or setTimeout From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul Andrews Sent: Tuesday, May 13, 2008 2:15 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Delay recursive function If you move sort(a, l, i-1

RE: [flexcoders] Delay recursive function

2008-05-13 Thread Gordon Smith
to screen swap some values render to screen ... Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nicholas Sent: Monday, May 12, 2008 10:07 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Delay