Mathematica 9 is now available
THIS IS DOCUMENTATION FOR AN OBSOLETE PRODUCT.
SEE THE DOCUMENTATION CENTER FOR THE LATEST INFORMATION.
Mathematica > Dynamic Interactivity > Interactive Manipulation > Options & Styling for Interactive Manipulation >

SynchronousUpdating

SynchronousUpdating
is an option for Manipulate, Dynamic and related functions which specifies whether or not to evaluate their contents synchronously.
  • If a dynamic object that needs to be updated has the setting SynchronousUpdating->True, the front end will wait for the necessary evaluation to be completed before going on to any other tasks.
  • If a dynamic object has the setting SynchronousUpdating->False, the front end will queue up its evaluation, and allow it to be performed asynchronously.
  • For dynamic objects that take a long time to update, the updating may time out unless the objects have SynchronousUpdating->False.
  • SynchronousUpdating->Automatic specifies that synchronous updating should be used when controls in an object such as Manipulate are active, and asynchronous updating should be used otherwise.
By default Manipulate will time out if the contents take more than 5 seconds to evaluate:
By disabling SynchronousUpdating, the evaluation will not time out:
New in 6
Ask a question about this page  |  Suggest an improvement  |  Leave a message for the team