WORKING: Home Theater Experience
#1
Lightbulb 
Go to the directory:

\XBMC\skin\Horizonz - An Aeon Mod\720p

edit the file: DialogVideoInfo.xml

search for the line:

<control type="button" id="11">
<label>Trailer</label>
<include>contextformatinfo</include>

and add:

<onclick>Playlist.Clear</onclick>
<onclick>Action(Queue,25)</onclick>
<onclick>RunScript(special://home/scripts/Home Theater Experience/default.py)</onclick>

Now the button Trailer in the movieinfo works with the script Home Theater Experience

Good luck!
Reply
#2
The next step, is to change the script so before the movie will play it will switch my tv and amp to the right settings.

This must be done with X10 code's.

So if someone has some ideas wich commandline i can use in een python script to turn on a x10 device...

Please say so
Reply
#3
michaeldecharon Wrote:The next step, is to change the script so before the movie will play it will switch my tv and amp to the right settings.

This must be done with X10 code's.

So if someone has some ideas wich commandline i can use in een python script to turn on a x10 device...

Please say so

I've got this code for controling a X10 device form Livin:

# Send HTTP Post
import urllib
WEBSVR = "http://htpc/"
devicename = "Living Room Subwoofers"
action = "action_on"
cmd = "On"
# Encode the data
params = urllib.urlencode({'control_device':devicename, action:cmd, 'selectdim':0})
# Send POST command to Homeseer
urllib.urlopen(WEBSVR, params)

Now i only need to know where to put it in the script of Home Theater Experience.

Can someone point me in the right direction?
Reply
#4
What about for aeon auriga? How would I set up a button for that skin? Thanks
Reply

Logout Mark Read Team Forum Stats Members Help
WORKING: Home Theater Experience0