General

on

on('Key', function () {
  ...
});

Which Outputs

Key::
  ...
Return

If

If(condition, function () {
  ...
});

Which Outputs

if (condition) {
  ...
}

If/Else

If(condition, function () {
  ...
}).Else(function () {
  ...
});

Which Outputs

if (condition) {
  ...
}
else {
  ...
}

set

set('Key', Value);

Which Outputs

Key := Value

get

get('Key');
get('Key').get('Property');

Which Outputs

Key
Key.Property

run

get('Key').run(...);

Which Outputs

Key(...)

runInline

method(get('Key').runInline(...));

Which Outputs

method(Key(...))

Commands/Functions

send

send(...);

Which Outputs

Send, ...

sendMode

sendMode(...);

Which Outputs

SendMode ...

sendEvent

sendEvent(...);

Which Outputs

SendEvent, ...

sendPlay

sendPlay(...);

Which Outputs

SendPlay, ...

sendInput

sendInput(...);

Which Outputs

SendInput, ...

sendRaw

sendRaw(...);

Which Outputs

SendRaw, ...

msgBox

msgBox(...);

Which Outputs

MsgBox, ...

click

click(...);

Which Outputs

Click, ...

setCapsLockState

setCapsLockState(...);

Which Outputs

SetCapsLockState, ...

Conditions

winExist

winExist(...);

Which Outputs

WinExist(...)