Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: edits/style
Scripting_function


Panel
titleDescription

Invokes (calls) the given Python function object after all of the currently processing and pending events are done being processed, or after a specified delay. The function will be executed on the GUI, or event dispatch, thread. This is useful for events like propertyChange events, where the script is called before any bindings are evaluated. 

If you specify an optional time argument (number of milliseconds), the function will be invoked after all currently processing and pending events are processed plus the duration of that time.

Client permissions restrictions


Panel
titleSyntax

system.util.invokeLater(function, [delay])

  • Parameters

Callable function - A Python function object that will be invoked later, on the GUI, or event-dispatch, thread with no arguments.

Integer delay - A delay, in milliseconds, to wait before the function is invoked. The default is 0, which means it will be invoked after all currently pending events are processed. [optional]

  • Returns

Nothing

  • Scope

Vision Client

Panel
titleCode Examples
Code Block
languagepy
titleCode Snippet
# The code in the update/refresh button uses the 'date' property on the two 
# calendar components, which are bound to the current_timestamp property on their 
# parent. We want to simulate a button press when the window opens, but only 
# after the date properties' bindings have been evaluated.
 
if event.propertyName == 'current_timestamp':
   # Define a function to click the button.
   def clickButton(button = event.source.parent.getComponent('Refresh')):
      import system
      button.doClick()
      system.gui.messageBox("Button has been clicked!")
 
   # Tell the system to invoke the function after
   # the current event has been processed.
   system.util.invokeLater(clickButton)
Panel
titleKeywords

system util invokeLater, util.invokeLater