# Pointerclick event

**URL:** https://phaser.discourse.group/t/pointerclick-event/9403
**Category:** Phaser 3
**Created:** [April 26, 2021, 1:25pm UTC](https://phaser.discourse.group/t/pointerclick-event/9403 "2021-04-26T13:25:39Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![knighter](https://avatars.discourse-cdn.com/v4/letter/k/71e660/32.png) [@knighter](https://phaser.discourse.group/u/knighter)
#### Post date: [April 26, 2021, 1:25pm UTC](https://phaser.discourse.group/t/pointerclick-event/9403/1 "2021-04-26T13:25:39Z")

</div>

There is a `pointerdown` event, there is a `pounterup` event for `on` method.  
How can I do a “pointerclick” event: if both events was emited by the same object in the specified order?

---

<div class="post-metadata">

### Author: ![samme](https://yyz2.discourse-cdn.com/free1/user_avatar/phaser.discourse.group/samme/32/5275_2.png) [@samme](https://phaser.discourse.group/u/samme)
#### Post date: [April 26, 2021, 2:36pm UTC](https://phaser.discourse.group/t/pointerclick-event/9403/2 "2021-04-26T14:36:36Z")

</div>

```javascript
gameObject.on('pointerup', function () {/*…*/});
```

---

<div class="post-metadata">

### Author: ![knighter](https://avatars.discourse-cdn.com/v4/letter/k/71e660/32.png) [@knighter](https://phaser.discourse.group/u/knighter)
#### Post date: [April 26, 2021, 2:43pm UTC](https://phaser.discourse.group/t/pointerclick-event/9403/3 "2021-04-26T14:43:16Z")

</div>

It is’t what I need. I want event which was emitted by sequence of two events `pointerdown` and `pounterup` from same object in the specified order.

---

<div class="post-metadata">

### Author: ![ReydVires](https://yyz2.discourse-cdn.com/free1/user_avatar/phaser.discourse.group/reydvires/32/939_2.png) [@ReydVires](https://phaser.discourse.group/u/ReydVires)
#### Post date: [April 26, 2021, 4:47pm UTC](https://phaser.discourse.group/t/pointerclick-event/9403/4 "2021-04-26T16:47:07Z")

</div>

You should manage it alone to be able “onClick” behavior fired
