Skip to main content
Version: 8.1

system.perspective.closePopup

This function is used in Python Scripting.

Description​

Closes a popup view.

Syntax​

tip

This function accepts keyword arguments.

system.perspective.closePopup(id, [sessionId], [pageId])

Parameters​

TypeParameterDescription
StringidThe unique identifier for the popup, given to the popup when first opened. If given an empty string, then the most recently focused popup will be closed.
StringsessionIdIdentifier of the Session to target. If omitted, the current Session will be used automatically. When targeting a different session, then the pageId parameter must be included in the call. [optional]
StringpageIdIdentifier of the page to target. If omitted, the current Page will be used automatically. [optional]

Returns​

Nothing

Scope​

Gateway, Perspective Session

note

This function will only work in the Gateway scope if both sessionId and pageId are supplied to the call.

Code Examples​

Code Snippet
# Closes the popup with the given id.
system.perspective.closePopup('popup 4')
Code Snippet
# Closes the last focused popup
system.perspective.closePopup('')

Keywords​

system perspective closePopup, perspective.closePopup