Click to See Complete Forum and Search --> : Reloading Iframe


Muruka
10-21-2005, 06:16 PM
Howdy,
I have a flash file that has buttons when clicked load an html page into an Iframe. My problem is that after I load my second or third ect. html page into my Iframe, I cannot load any previous html pages that have loaded into my Iframe.

the script im using to identify and load my html is

function loadIframe(iframeName, url) {
if ( window.frames[iframeName] ) {
window.frames[iframeName].location = url;
return false;
}
else return true;
}

Is there a reload function that i must implement so I will enable any links to load a html page every time and if so what would it be?

Thanks in advance for any help you can give me!

Regards,
Muruka

Muruka
10-22-2005, 05:34 AM
bump