|
SOLUTIONS
|
BUILT-IN MATHEMATICA SYMBOL
SynchronousInitialization
SynchronousInitialization
is an option for Manipulate, DynamicModule, and related functions that specifies whether or not to evaluate the expression given as the setting for Initialization synchronously.
DetailsDetails
- With SynchronousInitialization->True, the first time a Manipulate or DynamicModule is displayed, it will wait until the evaluation of the initialization expression is complete before proceeding.
- With SynchronousInitialization->False, the evaluation of the initialization expression will be queued up, and performed asynchronously.
- If a DynamicModule with SynchronousInitialization->False contains other dynamic objects with SynchronousUpdating->True, then there is no guarantee that the initialization of the dynamic module will be complete before dynamic objects inside it are updated.
ExamplesExamplesopen allclose all
Basic Examples (2)Basic Examples (2)
By default, the Manipulate initializations are evaluated synchronously:
| In[1]:= |
| Out[1]= | Play Animation ▪![]() |
Force asynchronous initialization:
| In[1]:= |
| Out[1]= | Play Animation ▪![]() |
New in 6
Mathematica 9 is now available!
New to Mathematica?
Find your learning path »
Have a question?
Ask support »


