123
Senior Member
Problem: Touchscreen, with no keyboard or mouse, is showing Internet Explorer in FullScreen mode. How do you get out of FullScreen mode?
Anyone have any creative ideas to resolve this seemingly simple problem?
PS
I'd settle for a means of making the Windows Start menu appear ... Ctrl-Esc if you had a keyboard!
- If you have a keyboard you can press F11 and toggle out of FullScreen mode.
- If you have a mouse you can touch the top edge of the display (i.e. 1st line of pixels) and IE's menu bar will scroll down and allow you to click Tools > Full Screen. Unfortunately, my Touchscreen lets your finger get within 5 pixels of the top edge but no closer ... so you can't activate IE's hidden menu.
- You can try to do something with Javascript but that won't get you far because of IE's security restrictions.
- You can write some VBScript code that finds the appropriate IE session (by its URL) and then sets the FullScreen property to false. Problem is that my HA app refuses to "CreateObject("Shell.Application").Windows". Why not? No clue; something about "ActiveX object can't do that".
Code:
Dim oItems, oItem
Set oItems = CreateObject("Shell.Application").Windows
If oItems.Count > 0 Then
For Each oItem In oItems
If InStr(oItem.LocationURL, "/sys/") > 0 Then oItem.FullScreen = false
Next
End if
Set oItems = Nothing
Set oItem = Nothing
Anyone have any creative ideas to resolve this seemingly simple problem?
PS
I'd settle for a means of making the Windows Start menu appear ... Ctrl-Esc if you had a keyboard!