Flash linking to frames

Okay, I have a flash navigation in one frame and html page in the other… I would like when clicked on a button, only the bottom frame reloads to a new page… anyone know where I can find info on this?

thanks

:thumb:
http://www.kirupa.com/developer/flash5/frames.htm

On your html document, define the frame name.
ie:

<html>

<frameset cols="25%,75%">

  <frame src="menu.html">
  <frame src="main.html" name="main"> // this is the frame you are targeting

</frameset>

</html>
on (release) {
    getURL("yourhtmlfile.html", "main");
}

[edit] yonip beat me [/edit]

danke! senior!