PC Review
Forums
Newsgroups
Microsoft Word
Microsoft Frontpage
Frames - Redirect
Forums
Newsgroups
Microsoft Word
Microsoft Frontpage
Frames - Redirect
![]() |
Frames - Redirect |
|
|
Thread Tools | Rate Thread |
|
|
#1 |
|
Guest
Posts: n/a
|
Hi:
I am using frames (3 on a page) with a countdown clock on one frame - at the countdown, I want to change the ALL frames at once (redirect), but I can only change the frame with the clock on it. How can I get all three to change simulatiously or, at least, open a single new page (No Frames) to take the entire place of the three frame page? Thanks, -- Hopeless |
|
|
|
#2 |
|
Guest
Posts: n/a
|
Assuming the countdown is a javascript, when it's done have it fire a function that opens the new
page. function openpage(){ window.open(http://www.google.com) } I think that syntax is right. -- Steve Easton Microsoft MVP FrontPage 95isalive This site is best viewed............ ........................with a computer "Hopeless" <Hopeless@discussions.microsoft.com> wrote in message news:4A5393D3-432D-4765-93E9-4CA7884E8928@microsoft.com... > Hi: > I am using frames (3 on a page) with a countdown clock on one frame - at the > countdown, I want to change the ALL frames at once (redirect), but I can only > change the frame with the clock on it. How can I get all three to change > simulatiously or, at least, open a single new page (No Frames) to take the > entire place of the three frame page? > Thanks, > -- > Hopeless |
|
|
|
#3 |
|
Guest
Posts: n/a
|
Steve:
It is javascript - currently I have a script: var newlocn= new page, but it loads only that frame. Where do I put your: function openpage(){ > window.open(http://www.google.com) > } -- Hopeless "Steve Easton" wrote: > Assuming the countdown is a javascript, when it's done have it fire a function that opens the new > page. > > function openpage(){ > window.open(http://www.google.com) > } > > I think that syntax is right. > > -- > Steve Easton > Microsoft MVP FrontPage > 95isalive > This site is best viewed............ > ........................with a computer > > "Hopeless" <Hopeless@discussions.microsoft.com> wrote in message > news:4A5393D3-432D-4765-93E9-4CA7884E8928@microsoft.com... > > Hi: > > I am using frames (3 on a page) with a countdown clock on one frame - at the > > countdown, I want to change the ALL frames at once (redirect), but I can only > > change the frame with the clock on it. How can I get all three to change > > simulatiously or, at least, open a single new page (No Frames) to take the > > entire place of the three frame page? > > Thanks, > > -- > > Hopeless > > > |
|
|
|
#4 |
|
Guest
Posts: n/a
|
Are you trying to load a page in a new window without a frame??
-- Steve Easton Microsoft MVP FrontPage 95isalive This site is best viewed............ ........................with a computer "Hopeless" <Hopeless@discussions.microsoft.com> wrote in message news:8877694D-E08F-419B-BAAD-EA54A35CB94D@microsoft.com... > Steve: > It is javascript - currently I have a script: > > var newlocn= new page, > > but it loads only that frame. Where do I put your: > > function openpage(){ > > window.open(http://www.google.com) > > } > > > -- > Hopeless > > > "Steve Easton" wrote: > > > Assuming the countdown is a javascript, when it's done have it fire a function that opens the new > > page. > > > > function openpage(){ > > window.open(http://www.google.com) > > } > > > > I think that syntax is right. > > > > -- > > Steve Easton > > Microsoft MVP FrontPage > > 95isalive > > This site is best viewed............ > > ........................with a computer > > > > "Hopeless" <Hopeless@discussions.microsoft.com> wrote in message > > news:4A5393D3-432D-4765-93E9-4CA7884E8928@microsoft.com... > > > Hi: > > > I am using frames (3 on a page) with a countdown clock on one frame - at the > > > countdown, I want to change the ALL frames at once (redirect), but I can only > > > change the frame with the clock on it. How can I get all three to change > > > simulatiously or, at least, open a single new page (No Frames) to take the > > > entire place of the three frame page? > > > Thanks, > > > -- > > > Hopeless > > > > > > |
|
|
|
#5 |
|
Guest
Posts: n/a
|
Steve, yes. Situation is: I have a page with 3 frames - 1 frame has the
countdown clock - at expiration, I want to direct to a new FUll page - no frames, but all I can do is direct to a new frame page in the same frame as the clock is in, therefore, I cannot get to a "default" page in place of the three frames. I have worked with this so much it makes perfect sense to me but I hope I have explained it well for you. Thanks for your help. I am hopelessly beyond my knowledge. -- Hopeless "Hopeless" wrote: > Hi: > I am using frames (3 on a page) with a countdown clock on one frame - at the > countdown, I want to change the ALL frames at once (redirect), but I can only > change the frame with the clock on it. How can I get all three to change > simulatiously or, at least, open a single new page (No Frames) to take the > entire place of the three frame page? > Thanks, > -- > Hopeless |
|
|
|
#6 |
|
Guest
Posts: n/a
|
Unless your count down script allows the setting of target value of _top, then you will not be able
to do this. -- ============================================== Thomas A. Rowe (Microsoft MVP - FrontPage) ============================================== If you feel your current issue is a results of installing a Service Pack or security update, please contact Microsoft Product Support Services: http://support.microsoft.com If the problem can be shown to have been caused by a security update, then there is usually no charge for the call. ============================================== "Hopeless" <Hopeless@discussions.microsoft.com> wrote in message news:C32519E4-579E-401E-9003-80BD2B9F5598@microsoft.com... > Steve, yes. Situation is: I have a page with 3 frames - 1 frame has the > countdown clock - at expiration, I want to direct to a new FUll page - no > frames, but all I can do is direct to a new frame page in the same frame as > the clock is in, therefore, I cannot get to a "default" page in place of the > three frames. I have worked with this so much it makes perfect sense to me > but I hope I have explained it well for you. Thanks for your help. I am > hopelessly beyond my knowledge. > -- > Hopeless > > > "Hopeless" wrote: > >> Hi: >> I am using frames (3 on a page) with a countdown clock on one frame - at the >> countdown, I want to change the ALL frames at once (redirect), but I can only >> change the frame with the clock on it. How can I get all three to change >> simulatiously or, at least, open a single new page (No Frames) to take the >> entire place of the three frame page? >> Thanks, >> -- >> Hopeless |
|
|
|
#7 |
|
Guest
Posts: n/a
|
AFAIK, all you have to do is use the statement (in JS)
top.location href="........" and this breaks out of the frame -- Cheers, Trevor L. Website: http://tandcl.homemail.com.au Thomas A. Rowe wrote: > Unless your count down script allows the setting of target value of > _top, then you will not be able to do this. > > -- > ============================================== > Thomas A. Rowe (Microsoft MVP - FrontPage) > ============================================== > If you feel your current issue is a results of installing > a Service Pack or security update, please contact > Microsoft Product Support Services: > http://support.microsoft.com > If the problem can be shown to have been caused by a > security update, then there is usually no charge for the call. > ============================================== > > "Hopeless" <Hopeless@discussions.microsoft.com> wrote in message > news:C32519E4-579E-401E-9003-80BD2B9F5598@microsoft.com... >> Steve, yes. Situation is: I have a page with 3 frames - 1 frame has >> the countdown clock - at expiration, I want to direct to a new FUll >> page - no frames, but all I can do is direct to a new frame page in >> the same frame as the clock is in, therefore, I cannot get to a >> "default" page in place of the three frames. I have worked with >> this so much it makes perfect sense to me but I hope I have >> explained it well for you. Thanks for your help. I am hopelessly >> beyond my knowledge. -- >> Hopeless >> >> >> "Hopeless" wrote: >> >>> Hi: >>> I am using frames (3 on a page) with a countdown clock on one frame >>> - at the countdown, I want to change the ALL frames at once >>> (redirect), but I can only change the frame with the clock on it. How >>> can I get all three to change simulatiously or, at least, open >>> a single new page (No Frames) to take the entire place of the three >>> frame page? Thanks, >>> -- >>> Hopeless |
|
![]() |
|
| Thread Tools | |
| Rate This Thread | |
|
|

Main Page 

