I'm using a Flash movie with buttons as an html navigation frame (named "header") for my site. I entered the name of the target html frame ("documents") as the second parameter in getURL, but instead of opeing the web page in that frame, it opens it in a new window.
I'm out of ideas. It works if I don't use the web page with my flash file and use regular links so something flash related has to be out of sorts. I appreciate any help you could give me. Thanks.
Here is my call to geturl:
on (release) {
getURL("index-1.html","documents");
}
Here are my frames.
<frameset rows="165,2*" border="0">
<frame name="header" noresize="noresize" scrolling="no" frameborder="0" src="header.html">
<frame name="documents" noresize="noresize" frameborder="0" src="mainpage.html">
</frameset>
I'm out of ideas. It works if I don't use the web page with my flash file and use regular links so something flash related has to be out of sorts. I appreciate any help you could give me. Thanks.
Here is my call to geturl:
on (release) {
getURL("index-1.html","documents");
}
Here are my frames.
<frameset rows="165,2*" border="0">
<frame name="header" noresize="noresize" scrolling="no" frameborder="0" src="header.html">
<frame name="documents" noresize="noresize" frameborder="0" src="mainpage.html">
</frameset>