yes, but you can mimic multithreading to permit one "process" to interrupt another
http://blogs.adobe.com/aharui/2008/01/threads_in_actionscript_3.html --- In [email protected], Paul Andrews <p...@...> wrote: > > On 28/07/2010 09:57, Christophe wrote: > > Hello, > > > > How to stop a ruuning function by software of another function ? > > > > FunctionA > > { > > } > > > > FunctionB > > { > > Stop FunctionA > > } > > > > Thank you, > > Christophe, > > > > Christophe, you cannot execute FunctionB while FunctionA executes, > except if you call FunctionB from FunctionA. > > There is only one thread of execution, so your question doesn't make > sense for this environment. >

