I'm trying to target a damn HTML frame from my Flash based navigation bar.
Here's what I've got -
<!-- Index.html --!>
<FRAMESET rows="113,*" frameborder=0 border=0>
<FRAME name="title" src="title.htm">
<FRAME name="main" src="main.htm">
</FRAMESET>
<!-- main.htm --!>
<FRAMESET cols="170,*" frameborder=0 border=0 framespacing=0>
<FRAME name="menu" src="menu.htm">
<FRAME name="data" src="data.htm">
</FRAMESET>
<!-- Flash bar, action layer separate from button layers --!>
services.onRelease = function(){
getURL("services.htm", "data");
};
Basically, I have Index load first, and split into two frames - one called "title" that is my title bar, and one called "main" that is the major frame. "Main" frame is then split into "menu" frame (where the flash resides) and "data" frame, where I want everything to load. Worse yet, if I change the target to "_self" it loads itself into the menu frame without a problem. I know a number of messy ways to make this all work, but I want this to just target the damn frame I tell it to!
Flash loads everything in a new damn window. It's pissing me off, so I thought I'd ask here. It DOES load the appropriate page, but it's ignoring my targeting. Am I doing something stupid wrong here?
Here's what I've got -
<!-- Index.html --!>
<FRAMESET rows="113,*" frameborder=0 border=0>
<FRAME name="title" src="title.htm">
<FRAME name="main" src="main.htm">
</FRAMESET>
<!-- main.htm --!>
<FRAMESET cols="170,*" frameborder=0 border=0 framespacing=0>
<FRAME name="menu" src="menu.htm">
<FRAME name="data" src="data.htm">
</FRAMESET>
<!-- Flash bar, action layer separate from button layers --!>
services.onRelease = function(){
getURL("services.htm", "data");
};
Basically, I have Index load first, and split into two frames - one called "title" that is my title bar, and one called "main" that is the major frame. "Main" frame is then split into "menu" frame (where the flash resides) and "data" frame, where I want everything to load. Worse yet, if I change the target to "_self" it loads itself into the menu frame without a problem. I know a number of messy ways to make this all work, but I want this to just target the damn frame I tell it to!
Flash loads everything in a new damn window. It's pissing me off, so I thought I'd ask here. It DOES load the appropriate page, but it's ignoring my targeting. Am I doing something stupid wrong here?