Setup guide

Remarks
Never forget to call KeyUp after KeyDown.
PostMessage(
nMsg, wParam, lParam
)
SendMessage(
nMsg, wParam, lParam
)
Posts or sends a message to the window.
Arguments
nMsg
Required. WM_xxx value from the eWinMessages
enumeration, or a numerical value representing a valid Win32
message.
wParam
Required. Appropriate WPARAM value for nMsg. Depends on the message.
lParam
Required. Appropriate LPARAM value for nMsg. Depends on the message.
Remarks
PostMessage and SendMessage behave exactly like their Win32 API equivalents. SendMessage can return values
from the window's window procedure to the script.
Click theicon in the scripteditor's toolbar to insert a PostMessage method from a captured message.
Window(
eWindow
)
Returns a window object related to this window, i.e. a child window, the next window in the Z order, the top level parent
and so on.
Arguments
nMsg
Required. wndXXX value from the eWindow enumeration. See remarks.
Remarks
eWindow can be one of the following constants:
wndFirst
The sibling window that is on top of the Z order
wndLast
The sibling window that is below all others in the Z order
wndNext
Next sibling window in the Z order
wndPrevious
Previous sibling window in the Z order
wndOwner
The window's owner window, if any
wndChild
The first child window of this window, if any
wndTop
Same as wndFirst
wndTopLevel
The top level parent window