|
|
fl.showIdleMessage()
Usagefl.showIdleMessage(show)
Parameters- show
- A Boolean value specifying whether to enable or disable the
warning about a script running too long.
DescriptionMethod;
lets you disable the warning about a script running too long (pass false for show).
You might want to do this when processing batch operations that
take a long time to complete. To re-enable the alert, issue the
command again, this time passing true for show.
ExampleThe
following example illustrates how to disable and re-enable the warning about
a script running too long:
fl.showIdleMessage(false);
var result = timeConsumingFunction();
fl.showIdleMessage(true); ;
var result = timeConsumingFunction();
|