Help - Search - Members - Calendar
Full Version: Amt Script Mod - To Go Along With Keymap Mod
Scenyx Entertainment Community > Xbox1 Forums > Software Forums > XBMC for Xbox Forums > XBMC Skinning > Official Team Blackbolt Skins Forum > Skin Mods
Spaceman2004
This little mod allows the AMT script to use "Back" on the remote to act the same as MC360 when using the DVD keymap mod.

Edit /XBMC/scripts/Apple Movie Trailers/extras/lib/gui.py

Then fine the first "Remote"

You should see these lines...

CODE
    def onAction( self, action ):
        try:
            button_key = self.controller_action.get( action.getButtonCode(), 'n/a' )
            control = self.getFocus()
            if ( button_key == 'Keyboard ESC Button' or button_key == 'Back Button' or button_key == 'Remote Menu Button' ):
                self.exitScript()
            elif ( button_key == 'Keyboard Backspace Button' or button_key == 'B Button' or button_key == 'Remote Back Button' ):


Change 'Remote Menu Button' to 'Remote Back Button'

Then the next few lines later you should delete, "or button_key == 'Remote Back Button'"

You should have this...

CODE
    def onAction( self, action ):
        try:
            button_key = self.controller_action.get( action.getButtonCode(), 'n/a' )
            control = self.getFocus()
            if ( button_key == 'Keyboard ESC Button' or button_key == 'Back Button' or button_key == 'Remote Back Button' ):
                self.exitScript()
            elif ( button_key == 'Keyboard Backspace Button' or button_key == 'B Button' ):


Save the file, and then copy over the old version of gui on the xbox.

Now when you press 'Back' you should go back to the main blade.

When there is a fully working version of AMT is realised then I'll upload the full gui.py file with the DVD keymap mod, so things will be nice and easy to set up.
nuka1195
QUOTE
When there is a fully working version of AMT is realised...


What's not working?
Spaceman2004
It's back when you and Jezz were trying to figure stuff out when it wasn't working correctly with MC360 v1.

Of course I've no idea what was truely going on behind the scenes.
o0oFoXo0o
Hallo @ll !

QUOTE(Spaceman2004 @ Feb 20 2007, 12:46 PM) *

This little mod allows the AMT script to use "Back" on the remote to act the same as MC360 when using the DVD keymap mod.


Thank you man! Exactly that was iam searching for.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2013 Invision Power Services, Inc.