### point

<b>HyperTalk Definition</b>

An expression that evaluates to a specific screen location, in the form of two integers separated by a comma.

Item 1 of a point is the horizontal offset (in pixels).  Item 2 of a point is the vertical offset (in pixels).  For example:

```
91,303
"91,303"
"30" & "," & "100"
the clickLoc
```

<b>AppleScript Definition</b>

An expression that evaluates to a specific screen location, in the form of a list with two integer elements. For example:

```
{ 91, 303 }
clickLoc
```
