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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

opening a fullscreen page from flash 1

Status
Not open for further replies.

DelphiAaron

Programmer
Jul 4, 2002
826
AU
ive put this code in a flash on click event
javascript:window.open("bigpage.html","fs","fullscreen=yes")

it opens the page full screen but when i close it theres another normal size window left behind with the above script in the address bar
anyone know why ??
 
Sounds like the orignial page calles and opens the new "flash" page. The "flash" page opens on top of your original page. When you close it, it is still running. You need to put a window.close() after your javascript:window.open("bigpage.html","fs","fullscreen=yes")

Hope thats what your looking for.

MH
 
that worked
i put window.close(); at the end.
thankyou very much :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top