How to manage full screen in IE via automation? (Flash player like) - Stack Overflow most recent 30 from stackoverflow.com 2010-03-22T14:37:58Z http://stackoverflow.com/feeds/question/246365 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/246365/how-to-manage-full-screen-in-ie-via-automation-flash-player-like 1 How to manage full screen in IE via automation? (Flash player like) Vinzz http://stackoverflow.com/users/28922 2008-10-29T10:40:36Z 2008-10-29T10:43:21Z <p>Hi,</p> <p>I'm facing a problem with IE7 full screen mode.</p> <p>Got an app lying in an activeX embedded in IE. Until IE6, we managed fullscreen via </p> <blockquote> <p>IWebBrowser2::put_FullScreen(bool bIsFull) which was good and well.</p> </blockquote> <p>But since IE7, it seems that this trick is deprecated, as it looses the tab bar on the way back from fullscreen.</p> <p>One solution would be to go with the call to</p> <blockquote> <p>IWebBrowser2::put_TheaterMode(bool bIsFull) which seems to be what's done in IE7 when stroking F11</p> </blockquote> <p>But that's not what I want, since there's the tab and address bar in auto hide mode</p> <p>So I'd like to achieve a true fullscreen mode, like what's done in flash for fullscreen youtube videos.</p> <p>Do you know any way to achieve that?</p> http://stackoverflow.com/questions/246365/how-to-manage-full-screen-in-ie-via-automation-flash-player-like/246370#246370 1 Answer by Ady for How to manage full screen in IE via automation? (Flash player like) Ady http://stackoverflow.com/users/31395 2008-10-29T10:43:21Z 2008-10-29T10:43:21Z <p>Flash doesn't use the browser to enter full screen, it does it by invoking native OS libraries.</p>