How to manage full screen in IE via automation? (Flash player like) - Stack Overflow most recent 30 from stackoverflow.com2010-03-22T14:37:58Zhttp://stackoverflow.com/feeds/question/246365http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/246365/how-to-manage-full-screen-in-ie-via-automation-flash-player-like1How to manage full screen in IE via automation? (Flash player like)Vinzzhttp://stackoverflow.com/users/289222008-10-29T10:40:36Z2008-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#2463701Answer by Ady for How to manage full screen in IE via automation? (Flash player like)Adyhttp://stackoverflow.com/users/313952008-10-29T10:43:21Z2008-10-29T10:43:21Z<p>Flash doesn't use the browser to enter full screen, it does it by invoking native OS libraries.</p>