full-screen

Q&A about the latest versions
Post Reply
J_L
Posts: 1
Joined: Tue Aug 12, 2008 4:08 pm

Hi Thomas
I'm using v2 with some success to convert qtvr movies to flash but to make a full-screen html page I have to add another piece of javascript, even though I'm choosing to use your full-screen template it doesn't do what this does.

window.moveTo(0,0)
window.resizeTo(window.screen.availWidth,window.screen.availHeight)
window.focus()

Am I missing something?
bw
JL
John Law Panoramas
mail@john-law.org.uk
http://www.john-law.org.uk
User avatar
thomas
Chief Gnome
Posts: 2613
Joined: Fri Sep 01, 2006 3:56 pm
Location: Vienna, Austria
Contact:

Hi John,

I am not a JavaScript expert, so maybe someone else can help?
MfG, Thomas
User avatar
Wim.Koornneef
Posts: 218
Joined: Wed Jan 03, 2007 4:11 pm
Location: The Netherlands
Contact:

Hello John,

I am defenitely a Javascript rooky, and for sure Thomas isn't one ;-) but nevertheless this should work, I use it in my customized html templates (f.e in the one that I used for the live demo in Prague)

<script language="javascript" type="text/javascript">
<!--
window.moveTo(0,0);
window.resizeTo(window.screen.availWidth,window.screen.availHeight);
window.focus();
//-->
</script>

Success,

Wim
Post Reply