i have a html frameset i'm using to act like a place to hold game player choices, primarily because they stick to the player's window statically thru out the game and as a result, act similar to saving player choices to a database. currently, there's a side frame, a footer frame and a main window frame. however, i need to occasionally break out of the footer frame, while retaining the already selected data in the side frame. how do you break out of 1 frame in your frameset without losing the stickiness in the other frames?
or even better is there a way to modify the size of the frames between page clicks? for example
upon click, changed toCode:<frameset cols="12%,*" frameborder="0" border="0" framespacing="0" > <frame name="menu" src=".html" marginheight="0" marginwidth="0" scrolling="no" > <frame name="content" src=".html" marginheight="0" marginwidth="0" scrolling="no" > </frameset>
without effecting the stickiness of the data in the frames?Code:<frameset cols="22%,*" frameborder="0" border="0" framespacing="0" > <frame name="menu" src=".html" marginheight="0" marginwidth="0" scrolling="no" > <frame name="content" src=".html" marginheight="0" marginwidth="0" scrolling="no" > </frameset>



Reply With Quote
so a link click on another page that uses that script, can resize (not close) a targeted frame on the page that's being linked, when you click the link?

Bookmarks