Skip to content

Windows Actions Activity

The Windows Actions activity enables users to perform various operations on a target window. This activity provides granular control over window states, allowing for the automation of common desktop interactions such as activating, hiding, or resizing windows.

Field Description Requirement
Window title The title of the window to operate on. Supports wildcard characters (*, ?) for search operations. Required
Window action The specific type of operation to perform on the window. Required

Action Types & Examples

ACTIVATE

  • Format: string
  • Example Result: "ACTIVATE"

HIDE

  • Format: string
  • Example Result: "HIDE"

SHOW

  • Format: string
  • Example Result: "SHOW"

RESTORE

  • Format: string
  • Example Result: "RESTORE"

MINIMIZE

  • Format: string
  • Example Result: "MINIMIZE"

MAXIMIZE

  • Format: string
  • Example Result: "MAXIMIZE"

Implementation Examples

Field Setup - Window title: Untitled – Notepad - Window title: *Note* - Window title: *Notepad - Window title: Untitled*

Execution Parameters - Window action: ACTIVATE - Window action: MINIMIZE - Window action: MAXIMIZE

Technical Notes

The Window title parameter supports standard wildcard characters to enable flexible window identification. An asterisk (*) matches any sequence of zero or more characters, while a question mark (?) matches any single character. This allows for partial title matching, such as identifying windows that start with, end with, or contain specific text. Ensure the exact title is used if no wildcards are intended.