Thread Execution?

Hi guys,

Let’s say I have two event listeners: Event.ENTER_FRAME and MouseEvent:MOUSE_DOWN.

public function enterFrame(event:Event) : void {

// this code is being executed…
// meanwhile, the mouse button gets pressed right now

// will it jump to the mouseDown handler here or wait until this function block is complete ?

// more code

}

Thanks.