system.vision.beep
Backwards Compatibility
This function replaces system.util.beep. Any scripts containing Vision Client scoped functions that were replaced with system.vision syntax will still work to maintain backwards compatibility. Only the system.vision variations will appear in the Script Editor's autocomplete popup.
This function is used in Python Scripting.
Description​
Tells the computer where the script is running to make a "beep" sound. The computer must have a way of producing sound.
Client Permission Restrictions​
This scripting function has no Client Permission restrictions.
Syntax​
system.vision.beep()
Parameters​
Nothing
Returns​
Nothing
Scope​
Vision Client
Code Examples​
Example #1
# This will simply cause the system where the script is being executed to emit a beep sound.
# That system must have a way to produce sound, such as speakers or headphones.
system.vision.beep()