Flash Button to call html

Ive searched the forums and cannot get a definite answer please help

Have a flash header and want to call a iframe thats in a page

I know iframes are bad but need it
on (release) {
getURL(“www.domainname.htm","targetFrame”)
}

I know this is close
Does the page that is visible not get called again
and how do you name the iframe correctly

The page that is up is 1.html
The iframe inside is 1xa.htm

How do i call a different html page from a flash header button to
enter the iframe in 1.html without reloading 1.html
Does this make sense?

iframe from flash navbar Tutorial http pleaseeeeeeee

Can you please post a reply in your thread for myself and any other hints

Thankyou

Pug

well you have the on(release){
getURL part right, but here is the full scripting if you wish a button to be clicked on and open a browser window with the URL you specifed in the Action Script:
on(release){
getURL(“http://thisismywebsite.com”);
}