# How to access frames in parent layer?

**URL:** https://forum.kirupa.com/t/how-to-access-frames-in-parent-layer/274343
**Category:** flash
**Created:** [October 28, 2008, 6:40pm UTC](https://forum.kirupa.com/t/how-to-access-frames-in-parent-layer/274343 "2008-10-28T18:40:40Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![alexandramils\_y](https://avatars.discourse-cdn.com/v4/letter/a/a88e57/32.png) [@alexandramils\_y](https://forum.kirupa.com/u/alexandramils_y)
#### Post date: [October 28, 2008, 6:40pm UTC](https://forum.kirupa.com/t/how-to-access-frames-in-parent-layer/274343/1 "2008-10-28T18:40:40Z")

</div>

Hi,

Since I am new here in Kirupa and in an FlashCS3, I would like to say hi first before I start with my problem

I was trying to figure it by myself - no luck at all… So I hope someone here will be able to help me out. Well, I am working in Flash CS3 with AS3 and I am trying to access a movie through buttons that are placed in lower layer. I am getting the following error:  
TypeError: Error #1010: A term is undefined and has no properties.  
at mytry\_fla::pageGroup\_22/onJackClick()

my code for this button is:  
[FONT=Courier New][/FONT]

```auto
 
jack_btn.addEventListener(MouseEvent.CLICK,onJackClick);

function onJackClick(e:MouseEvent):void
{
   this.content_mc.gotoAndPlay("jack");
}

```

Please, help!
