# setInterval within a movieclip onRelease

**URL:** https://forum.kirupa.com/t/setinterval-within-a-movieclip-onrelease/72937
**Category:** flash
**Created:** [December 10, 2004, 5:08pm UTC](https://forum.kirupa.com/t/setinterval-within-a-movieclip-onrelease/72937 "2004-12-10T17:08:53Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![barnesjn](https://avatars.discourse-cdn.com/v4/letter/b/b3f665/32.png) [@barnesjn](https://forum.kirupa.com/u/barnesjn)
#### Post date: [December 10, 2004, 5:08pm UTC](https://forum.kirupa.com/t/setinterval-within-a-movieclip-onrelease/72937/1 "2004-12-10T17:08:53Z")

</div>

Does anyone have any idea why this interval will only fire once when a movieclip is pressed and released. It works, but just one time. I want the interval to keep firing. This is a dumbed down version of the code.

Any help would be much appreciated !!!

on (release)  
{

function hello(i:String)  
{  
trace("hello " + i)  
}

this.go = hello(“justin”)  
myint = setInterval(this,“go”,1)  
}
