# On(release) gotoAndPlay

**URL:** https://forum.kirupa.com/t/on-release-gotoandplay/112535
**Category:** Uncategorized
**Created:** [June 8, 2004, 10:26pm UTC](https://forum.kirupa.com/t/on-release-gotoandplay/112535 "2004-06-08T22:26:26Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![zebdaag](https://avatars.discourse-cdn.com/v4/letter/z/53a042/32.png) [@zebdaag](https://forum.kirupa.com/u/zebdaag)
#### Post date: [June 8, 2004, 10:26pm UTC](https://forum.kirupa.com/t/on-release-gotoandplay/112535/1 "2004-06-08T22:26:26Z")

</div>

Hi,

I’m getting data from a database and I put this data in an array that looks like this:

me, you, he, she

Now I want this data to be put in an dynamic text field like this

me  
you  
he  
she

and they all have the option to click on it and do things like this  
for me:

```auto
on (release){
gotoAndPlay (20);
}

```

for you:

```auto
on (release){
gotoAndPlay (25);
}

```

for he:

```auto
on (release){
gotoAndPlay (30);
}

```

for she:

```auto
on (release){
gotoAndPlay (35);
}

```

thanks in advance

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [June 17, 2004, 8:22am UTC](https://forum.kirupa.com/t/on-release-gotoandplay/112535/2 "2004-06-17T08:22:40Z")

</div>

ok…i not so understand what u mean…  
to me maybe you want if the ‘he’ inside the array…then goto certain frame…  
why not u add if/else inside the on release…  
if ( ArrayName()==“he”)  
gotoAndPlay(1);

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [June 17, 2004, 7:22pm UTC](https://forum.kirupa.com/t/on-release-gotoandplay/112535/3 "2004-06-17T19:22:00Z")

</div>

Try this out:

[http://www.macromedia.com/support/flash/ts/documents/asfunction.htm](http://www.macromedia.com/support/flash/ts/documents/asfunction.htm)
