M
Michael Ash
Each of my pages has a simple script to rewrap itself in the correct frame
in case an indexer just addresses the content page:
function frameOpener()
{
if (parent == self)//no frameset
{
if (document.images)
top.location.replace('indexfr.htm?fa01');
else
window.location.href = 'indexfr.htm?fa01';
self.parent.contentloaded=1;
}
else // there is a frameset
{
....
}
}
This all works fine with browsers, but when I'm editing a page (like
fa01.htm above) and want to look at the results I always have to view it in
an external browser.
Can't use the Preview tab. When I do, the page momentairily appears, but
when it attempts to redirect it fails(or won't) to find the frame page.
Get the message:"The page cannot be displayed
The page you are looking for is currently unavailable "
Have tried this with the latest version of FP(2003) and it still does this.
Anyone know if there is a way around this?
Mike
in case an indexer just addresses the content page:
function frameOpener()
{
if (parent == self)//no frameset
{
if (document.images)
top.location.replace('indexfr.htm?fa01');
else
window.location.href = 'indexfr.htm?fa01';
self.parent.contentloaded=1;
}
else // there is a frameset
{
....
}
}
This all works fine with browsers, but when I'm editing a page (like
fa01.htm above) and want to look at the results I always have to view it in
an external browser.
Can't use the Preview tab. When I do, the page momentairily appears, but
when it attempts to redirect it fails(or won't) to find the frame page.
Get the message:"The page cannot be displayed
The page you are looking for is currently unavailable "
Have tried this with the latest version of FP(2003) and it still does this.
Anyone know if there is a way around this?
Mike