how to automatically redirect to a fullscreen page? i googled it but everything ifound don't work for me.. don't know why. all of those codes just open a popup with half a page width and height.
And i need it compelety like when u click F11. no any other detail. and i need it to work on Chrome.
thanx...

Recommended Answers

All 3 Replies

I fairly think this is impossible but I don't know with flash. The reason is every browser thinks this can be a security issue {Example: Pranks, Scams, etc etc...}

why can't this do..? as i remember i used one of the following and it worked few weeks ago. but not it doesn't now :'(
code 1

function fullScreen() {
window.open('index.php', 'mypage', 'fullscreen');
}

OR
code 2

function FullScreen(){
this.moveTo(0,0);
resizeTo(screen.availWidth,screen.availHeight);
}

code 2 do nothing now and code 1 only opens a half a size popup..

OR...........
is there A WAY to trigger F11????

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.