cancel
Showing results for 
Search instead for 
Did you mean: 

--kiosk effect to irpt page

Former Member
0 Kudos

Hi,

I have an irpt page from which I want to open another link with kiosk effect or full screen mode(without html bar). does anybody have any idea , how to open the url form MII with kisok mode.

or any alternative.

Thanks & Regards,

Eshwar..

Accepted Solutions (1)

Accepted Solutions (1)

swaroop_anasane
Active Contributor
0 Kudos

Hi Eswaraiah,

You can simply use:

window.open("http://www.google.com","fs","fullscreen=yes,channelmode=1");

For IE you can use below code in target html:

var WShell = new ActiveXObject("Wscript.shell");

WShell.SendKeys("{F11}");

Warm Regards,

Swaroop

Former Member
0 Kudos

Thanks swaroop it solved my problem.

I am trying this way only.however I missed the fullscreen=yes parameter.

by the way I have a simple url which I am passing in window.open() method. I dont have any target html page. In that case How should I use the below code.

var WShell = new ActiveXObject("Wscript.shell");

WShell.SendKeys("{F11}");

Thanks , Eshwar.

Answers (1)

Answers (1)

swaroop_anasane
Active Contributor
0 Kudos

Hi Eswaraiah,

You can include the code snippet in the p;age you want to open. Even if you use it in your main page, it would work but it will change document mode for main page as well. So all the htmls would be in F11 mode.

Warm Regards,

Swaroop

Former Member
0 Kudos

Hi,

window.open("http://www.google.com","fs","fullscreen=yes,channelmode=1"); is working fine in IE 9 and not in IE 8..Is there any to check window opened in full screen if not

use the below code to force window open in full screen something like that.

var WShell = new ActiveXObject("Wscript.shell");

WShell.SendKeys("{F11}");

Thanks , Eshwar