3 responses to “Flex Call Stack and callLater()”

  1. Ryan

    The timing of the callLater() function has to do with the component instantiation life cyclc. See the api ref for callLater(), and section on the instantiation lifecyvle in About creating advanced actionscript visual components.

  2. Joe

    I could be wrong, but I believe that callLater just adds it as a callback for the next frame, so 1/24 second by default.

    More details here: http://jimmyflex.blogspot.com/2007/11/dont-forget-power-of-calllater.html

  3. Hafiz

    The method specified in the callLater api will be invoked when flash player renders the next frame. Flash player is a frame based virtual machine with timeline, so the time it takes to call the method will depend on the framerate in which the player is running.

Leave a Reply