---
title: "otherMouseUp(with:)"
framework: realitykit
role: symbol
role_heading: Instance Method
path: "realitykit/arview/othermouseup(with:)"
---

# otherMouseUp(with:)

Informs the view that the user has released a mouse button other than the left or right button.

## Declaration

```swift
@MainActor @preconcurrency override dynamic func otherMouseUp(with event: NSEvent)
```

## Parameters

- `event`: An object encapsulating information about the mouse event.

## Discussion

Discussion The view handles the event instead of passing it to the next responder. See NSResponder for more information about the responder chain.

## See Also

### Handling mouse input

- [mouseDown(with:)](realitykit/arview/mousedown(with:).md)
- [mouseDragged(with:)](realitykit/arview/mousedragged(with:).md)
- [mouseUp(with:)](realitykit/arview/mouseup(with:).md)
- [mouseMoved(with:)](realitykit/arview/mousemoved(with:).md)
- [rightMouseDown(with:)](realitykit/arview/rightmousedown(with:).md)
- [rightMouseDragged(with:)](realitykit/arview/rightmousedragged(with:).md)
- [rightMouseUp(with:)](realitykit/arview/rightmouseup(with:).md)
- [otherMouseDown(with:)](realitykit/arview/othermousedown(with:).md)
- [otherMouseDragged(with:)](realitykit/arview/othermousedragged(with:).md)
- [scrollWheel(with:)](realitykit/arview/scrollwheel(with:).md)
