xbox-scene.com - your xbox news information source
Quick Links: Main Forums | Xbox360 Forums | Xbox1 Forums | PS3 Forums
Xbox-Scene Forum Help  Search Xbox-Scene Forums   Xbox-Scene Forum Members   Xbox-Scene Calendar

Giganews Usenet Offers: +1150 days binary retention, 99%+ Completion, and Unlimited Speed/Access!

360 ODD Emulators: X360 Key $99 | Wasabi360 FAT $99 | Wasabi360 Slim $99
C4E's iXtreme Burner MAX Drive: LiteOn iHAS124 DROPPED TO JUST $17


Welcome Guest ( Log In | Register )

 Forum Rules Rules
 
Reply to this topicStart new topic
> Dvd2xbox On Games Blade
honsi2004
post Oct 12 2006, 07:32 AM
Post #1


X-S Enthusiast


Group: Members
Posts: 2
Joined: 10-October 06
Member No.: 304618



I would have gladly on the Games Blade still another directlink to the program dvd2xbox - what must I do? (Sorry for my english)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
Hitcher
post Oct 12 2006, 08:40 AM
Post #2


X-S X-perience
**

Group: Members
Posts: 424
Joined: 24-July 03
Member No.: 51988



This is how you can chenge the Apps button -


Open your includes.xml found in the MC360/PAL/ folder.

Change the line:

<include name="19033"><label>Applications</label></include>

to

<include name="19033"><label>DVD2Xbox</label></include>

And:

<include name="19084"><label>Various Programs stored on your Xbox Hard Drive or DVD.</label></include>

to

<include name="19084"><label>Back-up your Games Collection to the Xbox Hard Drive.</label></include>

Save and close the file.



Then open the custom1112_GamesHome.xml.

Change the line:

<onclick>XBMC.ActivateWindow(1,Programs)</onclick>

to

<onclick>XBMC.RunXBE(E:\Apps\DVD2Xbox\Default.xbe)</onclick>

Save, upload to XBox and RESTART, you MUST restart.


I don't take credit for this though it was posted awhile ago.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
honsi2004
post Oct 12 2006, 09:29 AM
Post #3


X-S Enthusiast


Group: Members
Posts: 2
Joined: 10-October 06
Member No.: 304618



Thanks, I do.

But I didnīt take the "programs", I take the "Gamesaves" and its working.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
newiep2003
post Oct 12 2006, 10:16 AM
Post #4


X-S Member
*

Group: Members
Posts: 92
Joined: 29-September 05
Member No.: 248973
Xbox Version: v1.4
360 version: v1 (xenon)



check this out

http://forums.xbox-scene.com/index.php?showtopic=542538

this was for an older build but if you look at the xml files you'll get the idea

This post has been edited by newiep2003: Oct 12 2006, 10:17 AM
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
Jezz_X
post Oct 12 2006, 10:16 AM
Post #5


X-S Knowledgebase
********

Group: Moderator
Posts: 4531
Joined: 22-July 03
From: Australia
Member No.: 51477
Xbox Version: v1.1
360 version: none



You know when I last made the skin I left in an empty button just for this look for this bit and read it its pretty easy to figure out
CODE
<!-- Custom Button for modders -->
            <control>
                <description>Custom Button Highlight</description>
                <type>image</type>
                <posx>112</posx>
                <posy>180</posy>
                <width>281</width>
                <height>270</height>
                <texture>homebutton-5a.png</texture>
                <visible>Control.HasFocus(9) + !Control.HasFocus(1) + !Control.HasFocus(2)</visible>
            </control>

            <control>
                <description>Custom Highlight Shadow</description>
                <type>image</type>
                <posx>112</posx>
                <posy>180</posy>
                <width>281</width>
                <height>270</height>
                <texture>homebutton-5-shadow.png</texture>
                <visible>Control.HasFocus(9) + !Control.HasFocus(1) + !Control.HasFocus(2)</visible>
                <include>button-shadow</include>
            </control>

            <control>
                <description>Custom Push Button</description>
                <type>button</type>
                <id>9</id>
                <include>Home-Button-Commons</include>
                <posx>145</posx>
                <posy>360</posy>
                <label>Custom Text Here</label>
                <onclick>-</onclick>
                <texturefocus>icon-xbmc.png</texturefocus>
                <texturenofocus>icon-xbmc.png</texturenofocus>
<!-- Delete this line to show in skin -->    <visible>no</visible>            <!-- Delete this line to show in skin -->
                <visible>!Control.HasFocus(1) + !Control.HasFocus(2)</visible>
                <onleft>1</onleft>
                <onright>2</onright>
                <onup>8</onup>
                <ondown>10</ondown>
            </control>

            <control>
                <description>Custom Button Shine</description>
                <posx>170</posx>
                <posy>360</posy>
                <width>135</width>
                <height>30</height>
                <include>Shine</include>
                <visible>Control.HasFocus(9) + !Control.HasFocus(1) + !Control.HasFocus(2)</visible>
                <animation effect="fade" time="100">WindowOpen</animation>
            </control>

            <control>
                <description>Custom Button Multiline</description>
                <type>label</type>
                <posx>390</posx>
                <posy>205</posy>
                <width>210</width>
                <height>200</height>
                <wrapmultiline>true</wrapmultiline>
                <include>-</include>
                <font>font14</font>
                <include>TextcolorBlack</include>
                <include>shadow-grey</include>
                <visible>!Skin.HasSetting(nodescriptions) + Control.HasFocus(9) + !Control.HasFocus(1) + !Control.HasFocus(2)</visible>
                <animation effect="fade" time="100">WindowOpen</animation>
            </control>

            <control>
                <description>Button Seperator</description>
                <type>image</type>
                <posx>135</posx>
                <posy>394</posy>
                <width>235</width>
                <height>1</height>
                <texture>divider.png</texture>
                <visible>Control.IsVisible(9) + !Control.HasFocus(1) + !Control.HasFocus(2) + !Control.HasFocus(9)</visible>
                <animation effect="fade" time="100">WindowOpen</animation>
            </control>

<!-- END Custom Button for modders -->


this bit is the one you need to edit
QUOTE
<description>Custom Push Button</description>
<type>button</type>
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
Cr4z33
post Oct 12 2006, 05:09 PM
Post #6


X-S Senior Member
**

Group: Members
Posts: 243
Joined: 24-May 02
From: Italy
Member No.: 90
Xbox Version: v1.1
360 version: v1 (xenon)



Jezz_X how can I get rid of the Xbox Media Center CVS description when I am on the custom button?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
roormonger
post Oct 12 2006, 09:27 PM
Post #7


X-S Genius
****

Group: XS-BANNED
Posts: 808
Joined: 13-July 06
From: New Jersey- America's Asshole
Member No.: 289720
Xbox Version: v1.6
360 version: none



Gotta give it a label. If you put the label in the includes you will either have to reload the skin or restart xbmc for it to take effect.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
Jezz_X
post Oct 12 2006, 10:26 PM
Post #8


X-S Knowledgebase
********

Group: Moderator
Posts: 4531
Joined: 22-July 03
From: Australia
Member No.: 51477
Xbox Version: v1.1
360 version: none



QUOTE(Cr4z33 @ Oct 13 2006, 02:16 AM) *

Jezz_X how can I get rid of the Xbox Media Center CVS description when I am on the custom button?

you need to edit this bit
<description>Custom Button Multiline</description>
<type>label</type>

by either making an include to use for it
<include>-</include> <---- that line
or just replacing that line with
<label>Run dvd2xbox to rip games and video to your xbox HD</label>
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
Cr4z33
post Oct 18 2006, 12:31 PM
Post #9


X-S Senior Member
**

Group: Members
Posts: 243
Joined: 24-May 02
From: Italy
Member No.: 90
Xbox Version: v1.1
360 version: v1 (xenon)



QUOTE(Jezz_X @ Oct 13 2006, 12:33 AM) *

yor just replacing that line with
<label>Run dvd2xbox to rip games and video to your xbox HD</label>

I used this option and I get a white text instead of a black default one.
Note that I didn't change the MC360 default color text at all.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
Cr4z33
post Oct 20 2006, 10:22 AM
Post #10


X-S Senior Member
**

Group: Members
Posts: 243
Joined: 24-May 02
From: Italy
Member No.: 90
Xbox Version: v1.1
360 version: v1 (xenon)



QUOTE(Cr4z33 @ Oct 18 2006, 02:38 PM) *

I used this option and I get a white text instead of a black default one.
Note that I didn't change the MC360 default color text at all.

Up!
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
roormonger
post Oct 20 2006, 05:43 PM
Post #11


X-S Genius
****

Group: XS-BANNED
Posts: 808
Joined: 13-July 06
From: New Jersey- America's Asshole
Member No.: 289720
Xbox Version: v1.6
360 version: none



In the control for the description does it have a line that says

<include>TextcolorBlack</include>

or

<include>TextcolorWhite</include>

It has to be TextcolorBlack, and capitilization matters.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
Cr4z33
post Oct 21 2006, 09:09 PM
Post #12


X-S Senior Member
**

Group: Members
Posts: 243
Joined: 24-May 02
From: Italy
Member No.: 90
Xbox Version: v1.1
360 version: v1 (xenon)



It is

<include>TextcolorBlack</include>
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
roormonger
post Oct 21 2006, 09:46 PM
Post #13


X-S Genius
****

Group: XS-BANNED
Posts: 808
Joined: 13-July 06
From: New Jersey- America's Asshole
Member No.: 289720
Xbox Version: v1.6
360 version: none



And everything else is black but the description text?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
Cr4z33
post Oct 22 2006, 08:53 AM
Post #14


X-S Senior Member
**

Group: Members
Posts: 243
Joined: 24-May 02
From: Italy
Member No.: 90
Xbox Version: v1.1
360 version: v1 (xenon)



Exactly.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
Cr4z33
post Oct 22 2006, 10:21 AM
Post #15


X-S Senior Member
**

Group: Members
Posts: 243
Joined: 24-May 02
From: Italy
Member No.: 90
Xbox Version: v1.1
360 version: v1 (xenon)



OK I have seen a new Livemark mod has come out.
As the Homebrew button is working well I will recycle that for the dvd2xbox program.
Thank you all anyway. smile.gif
User is offlineProfile CardPM
Go to the top of the page
+Quote Post





Reply to this topicStart new topic

 

Lo-Fi Version Time is now: 22nd May 2013 - 03:56 PM