views:

229

answers:

2

I'm using scripting to turn the IE6 screen to full screen mode. I'm using the Wscript.Shell ActiveX object and sending the F11 key to IE. The problem is that if the user enters again to the screen it sends the F11 key again and it returns to normal screen. I tried to save the information in the user's session but when it ends the problem returns.

Did someone find a way of telling if the user is currently in full screen in IE6 using scripting?

Thanks.

+1  A: 

Here's a link to some example Javascript code that opens a new browser window fullscreen.

pianoman
+1  A: 

I've looked over the documentation of the window object and it doesn't indicate any property which provides the information you're looking for. My guess is that it's not possible.

Ken Browning