Need some help with Python script
#16
(2014-10-14, 18:56)KenV99 Wrote: I found a simpler way...

Code:
import subprocess
import xbmc
xbmc.executebuiltin('XBMC.Action(togglefullscreen)')
child = subprocess.call(["C:\Program Files\Internet Explorer\iexplore.exe", "-k"])
xbmc.executebuiltin('XBMC.Action(togglefullscreen)')

This is working for me to drop out of true fullscreen, launches IE in kiosk mode and then brings back a fullscreen after you close IE with Alt-F4.

You are a genius! This works like a charm.
This script should be part of every XBMC installation.

Again, thank you very much. You have no idea how long I have been struggling with this. Even the guys at the Devshed forum were unable to solve it..
Reply
#17
(2014-10-14, 19:25)AussieFries Wrote: You are a genius! This works like a charm.
This script should be part of every XBMC installation.

Again, thank you very much. You have no idea how long I have been struggling with this. Even the guys at the Devshed forum were unable to solve it..

You're welcome. Glad I could help...
Reply

Logout Mark Read Team Forum Stats Members Help
Need some help with Python script0