Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Dave, loading fullscreen from framed Flash fullscreen..Probs

Status
Not open for further replies.

wudz

Programmer
Joined
Mar 28, 2001
Messages
135
Location
GB
Dave, As you may remember, I used your Fullscreen loading from flash..the problem is this...From one of the frames in the 1st fullscreen (frame named 'm'(lot of thought in the arrived at name...Hi) ) from a button choice I load another fullscreen, in fact I use a duplication of the original pages these are situated in another folder..All works well until I close the 2nd full window, It sends me back to the first 'linker.html'. What I require, is that it returns to the 2nd linker (1st framed fullscreen) I have tried different 'close..' in the closewindow.html to no avail..
Can you please help....

John
 
Hi John

OK, you have your linker page, which has a button which loads the 'fullscreen' page and everything goes fullscreen.

Now in the 'fullscreenmovie.fla' as I called it, you have your 'closewindow' button. All you have to do to open another page fullscreen is to create a button and insert the following code:
Code:
on (release) {
    getURL ("linker2.html", "_self");
}
where linker2.html is the second page you want to go fulscreen, no javascript, nothing, it simply replaces the 'fullscreenmovie.html' with 'linker2.html'.

Now in linker2.html you want a button to take you back to your 'fullscreenmovie.html' without closing the window. All you need for this is a button in linker2 with the following actions:
Code:
on (release) {
    getURL ("fullscreenmovie.html", "_self");
}

dave
dave@pinkzeppelin.com

^^^^^^^^^^^^^^^^^^^^^​
 
Thanks dave, yo've done it again, prob. now solved, easy when you know someone who knows...

Thanks a mil

Old John
 
forgot too ask, where are you situated on this small polluted planet, I am in Lancashire, UK...I think you must be States side....or you stay up very late...Hi
 
I'm in Edinburgh (Scotland, not Stateside). And I probably get a normal 'days' sleep every couple of days. Very busy chap. ;-)

Glad the problem is solved

dave
dave@pinkzeppelin.com

^^^^^^^^^^^^^^^^^^^^^​
 
Insomnia Dave, well b----- me, just up the road..hi..I think you stay up longer than me though, I must tell the wife, there are OTHERS......
Thanks again Dave, good of you too take the trouble with us learners...

Yours John
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top