# Quick "this.onEnterFrame" clarification

**URL:** https://forum.kirupa.com/t/quick-this-onenterframe-clarification/310819
**Category:** flash
**Created:** [June 20, 2010, 5:00pm UTC](https://forum.kirupa.com/t/quick-this-onenterframe-clarification/310819 "2010-06-20T17:00:50Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![IQAndreas](https://avatars.discourse-cdn.com/v4/letter/i/f08c70/32.png) [@IQAndreas](https://forum.kirupa.com/u/IQAndreas)
#### Post date: [June 20, 2010, 5:00pm UTC](https://forum.kirupa.com/t/quick-this-onenterframe-clarification/310819/1 "2010-06-20T17:00:50Z")

</div>

Lets say I add a callback function to be run every frame the AS2 way.

```auto
this.onEnterFrame = myFunction;

```

If I add another enter frame listener, will this replace the old one, or add to the old one, so both functions will run when frames are entered?

And how do I remove these listeners?
