# Frame dissease

**URL:** https://forum.kirupa.com/t/frame-dissease/174342
**Category:** flash
**Created:** [January 4, 2006, 9:44pm UTC](https://forum.kirupa.com/t/frame-dissease/174342 "2006-01-04T21:44:50Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![RaRdEvA](https://avatars.discourse-cdn.com/v4/letter/r/ed8c4c/32.png) [@RaRdEvA](https://forum.kirupa.com/u/RaRdEvA)
#### Post date: [January 4, 2006, 9:44pm UTC](https://forum.kirupa.com/t/frame-dissease/174342/1 "2006-01-04T21:44:50Z")

</div>

hello, i am experiencing problems working with frames, i hope someone can help me (its for the work :wasted: )

This is my frame set code:

```auto
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "[http://www.w3.org/TR/html4/frameset.dtd](http://www.w3.org/TR/html4/frameset.dtd)">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>...::: Welcome To Z Code ::::...</title>
</head>
<frameset rows="187,*" cols="*" frameborder="NO" border="0" framespacing="0" noresize="TRUE">
  <frame src="top.html" name="top" scrolling="NO" noresize="TRUE">
  <frameset rows="*" cols="200,*" framespacing="0" frameborder="NO" border="0" noresize="TRUE">
    <frame src="NavBar.html" name="left" scrolling="NO" noresize="TRUE">
    <frame src="mainframe.html" name="main" frameborder="YES" border="1" noresize="TRUE">
  </frameset>
</frameset>
<noframes><body> Sorry, This Browser doesn't support Frames
</body></noframes>
</html>

```

And this is my AS code:

```auto
 
var aLink:String;
TextLink.onLoad = function () {
  Arrow._visible = true;
}
onRelease = function () { 
  getURL(aLink, "main", "GET");
}

```

I say that it should be working; but its obvious that, if it’s not working, there is something i’m doing wrong ☹

Thanks for the replies.
