Extending Flash |
|
|
|
| Objects > flash object (fl) > fl.enableImmediateUpdates() | |||
Flash MX 2004.
fl.enableImmediateUpdates(bEnableUpdates)
bEnableUpdates A Boolean value that specifies whether to enable (true) or disable (false) immediate visual updates of the timeline when executing effects.
Nothing.
Method; lets the script developer enable immediate visual updates of the timeline when executing effects. Immediate updates are normally suppressed so the user does not see intermediate steps that can be visually distracting and can make the effect appear to take longer than necessary. This method is purely for debugging purposes and should not be used in effects that are deployed in the field. After the effect completes, the internal state is reset to suppress immediate updates.
The following example enables immediate updates.
fl.enableImmediateUpdates(true) ;
fl.trace("Immediate updates are enabled");
|
|
|
|