WORKING: Home Theater Experience

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
michaeldecharon Offline
Senior Member
Posts: 143
Joined: May 2009
Reputation: 0
Location: Netherlands
Lightbulb  WORKING: Home Theater Experience Post: #1
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!
find quote
michaeldecharon Offline
Senior Member
Posts: 143
Joined: May 2009
Reputation: 0
Location: Netherlands
Post: #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
find quote
michaeldecharon Offline
Senior Member
Posts: 143
Joined: May 2009
Reputation: 0
Location: Netherlands
Post: #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?
find quote
apex82 Offline
Senior Member
Posts: 138
Joined: Oct 2009
Reputation: 0
Post: #4
What about for aeon auriga? How would I set up a button for that skin? Thanks
find quote