---
title: evaluatedReceivers
framework: foundation
role: symbol
role_heading: Instance Property
path: foundation/nsscriptcommand/evaluatedreceivers
---

# evaluatedReceivers

Returns the object or objects to which the command is to be sent (called both the “receivers” or “targets” of script commands).

## Declaration

```swift
var evaluatedReceivers: Any? { get }
```

## Discussion

Discussion It evaluates receivers, which are always object specifiers, to a proper object. If the command does not specify a receiver, or if the receiver doesn’t accept the command, it returns nil.

## See Also

### Accessing receivers

- [receiversSpecifier](foundation/nsscriptcommand/receiversspecifier.md)
