# \[F5\]Arg! For Actionscript Guru! Beginner needs help!

**URL:** https://forum.kirupa.com/t/f5-arg-for-actionscript-guru-beginner-needs-help/12427
**Category:** Uncategorized
**Created:** [January 31, 2003, 3:54am UTC](https://forum.kirupa.com/t/f5-arg-for-actionscript-guru-beginner-needs-help/12427 "2003-01-31T03:54:31Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![FatBeat](https://avatars.discourse-cdn.com/v4/letter/f/58956e/32.png) [@FatBeat](https://forum.kirupa.com/u/FatBeat)
#### Post date: [January 31, 2003, 3:54am UTC](https://forum.kirupa.com/t/f5-arg-for-actionscript-guru-beginner-needs-help/12427/1 "2003-01-31T03:54:31Z")

</div>

hi, i need help with a button, i did a " Tell target " and that works but what i want is to make is a buttton on the movie clip that the “tell target” opens and i want it to close the window or movie clip when you click on the button. So if some can help me out with the action script the would be great.

thank you very much

:chinaman: :hair:

---

<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: [January 31, 2003, 9:29am UTC](https://forum.kirupa.com/t/f5-arg-for-actionscript-guru-beginner-needs-help/12427/2 "2003-01-31T09:29:52Z")

</div>

I think it’d be best if you give us something specific. That way we can all help each other faster…(and probably won’t tire out our very helpful moderators 🙂 ).

Be more specific with your questions!

comicGeek

---

<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: [January 31, 2003, 5:06pm UTC](https://forum.kirupa.com/t/f5-arg-for-actionscript-guru-beginner-needs-help/12427/3 "2003-01-31T17:06:17Z")

</div>

okay i’ll make it simple’

I want to make a button that will close a movie clip when they press on it, like the " X " on this window and i would like if some can help me with the action script.

Thank you

---

<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: [February 3, 2003, 2:22am UTC](https://forum.kirupa.com/t/f5-arg-for-actionscript-guru-beginner-needs-help/12427/4 "2003-02-03T02:22:00Z")

</div>

that is just a simple button.

on(release){  
this.\_visible = 0;  
}

you can change this with \_parent.yourMCname or yourMCname or \_root.yourMCname. just remember to point it to where the movie clip you want to “close” is residing.

Also place a button that also controls its reappearance.

on(release){  
this.\_visible = 1;  
}

Refer to the attached file.

---

<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: [February 3, 2003, 5:10pm UTC](https://forum.kirupa.com/t/f5-arg-for-actionscript-guru-beginner-needs-help/12427/5 "2003-02-03T17:10:44Z")

</div>

hey thanks for the tip. i really appriciate it.

---

<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: [February 4, 2003, 1:38am UTC](https://forum.kirupa.com/t/f5-arg-for-actionscript-guru-beginner-needs-help/12427/6 "2003-02-04T01:38:47Z")

</div>

No problem that’s why the furoms are here!

😉
