RE: [flexcoders] Question on calling multiple Functions in sequence

2008-04-03 Thread Rick Winscot
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Wednesday, April 02, 2008 8:37 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Question on calling multiple Functions in sequence I just got busted for being wrong on a different question, but here goes

RE: [flexcoders] Question on calling multiple Functions in sequence

2008-04-03 Thread Mike Anderson
, 2008 2:55 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Question on calling multiple Functions in sequence You could create an 'event chain' to prevent collisions... I've attached a sample for reference. Rick Winscot From: flexcoders@yahoogroups.com [mailto:[EMAIL

RES: [flexcoders] Question on calling multiple Functions in sequence

2008-04-03 Thread Luciano Manerich Junior
(a); // a isnt null } De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Em nome de Mike Anderson Enviada em: quinta-feira, 3 de abril de 2008 13:35 Para: flexcoders@yahoogroups.com Assunto: RE: [flexcoders] Question on calling multiple Functions in sequence

[flexcoders] Question on calling multiple Functions in sequence

2008-04-02 Thread Mike Anderson
Hello All, I was wondering how things work, when calling multiple functions in sequence. For example, in this function: private function doThisFunction():void { myFunctionOne(); myFunctionTwo(); myFunctionThree(); } When I execute doThisFunction, does it literally run the 3

RE: [flexcoders] Question on calling multiple Functions in sequence

2008-04-02 Thread Tracy Spratt
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Anderson Sent: Wednesday, April 02, 2008 7:54 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Question on calling multiple Functions in sequence Hello All, I was wondering how things work, when calling multiple functions in sequence

Re: [flexcoders] Question on calling multiple Functions in sequence

2008-04-02 Thread Eric Cancil
When dealing with things inside the flash player - you need to deal with it as if it was single threaded - because generally, it is. In your example, the functions would be called in order, one after another...not all at the same time as you may think so lets say you had an example like this var

RE: [flexcoders] Question on calling multiple Functions in sequence

2008-04-02 Thread Mike Anderson
: Wednesday, April 02, 2008 6:34 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Question on calling multiple Functions in sequence When dealing with things inside the flash player - you need to deal with it as if it was single threaded - because generally, it is. In your example

RE: [flexcoders] Question on calling multiple Functions in sequence

2008-04-02 Thread Tracy Spratt
: [flexcoders] Question on calling multiple Functions in sequence Thank you Tracy and Eric - this DOES help me a lot - But I need to ask, what facilities are built into the FlashPlayer, that guarantees that Function2 doesn't run until Function1 not only executes, but actually FINISHES? Doing

Re: [flexcoders] Question on calling multiple Functions in sequence

2008-04-02 Thread Nayan Savla
Cancil Sent: Wednesday, April 02, 2008 6:34 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Question on calling multiple Functions in sequence When dealing with things inside the flash player - you need to deal with it as if it was single threaded - because generally

RE: [flexcoders] Question on calling multiple Functions in sequence

2008-04-02 Thread Mike Anderson
] On Behalf Of Tracy Spratt Sent: Wednesday, April 02, 2008 8:54 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Question on calling multiple Functions in sequence Unless you are doing something that is explicitly asynchronous, the single threaded nature of AS processing is reliable