Adding buttons
#1
I'm trying to add the button "Disc Drive" of skin Mediastream Redux to skin Mediastream official
. Anybody can help me?:


""""""""""""""""""""""""""""""""""""""""
custom_SkinSetting_1111.xml

""""""""""""""""""""""""""""""""""""""""

<control type="radiobutton" id="214">
<description>Hide Disc Drive Button</description>
<width>750</width>
<height>40</height>
<font>font13</font>
<textcolor>grey2</textcolor>
<focusedcolor>white</focusedcolor>
<label>$LOCALIZE[31111] - $LOCALIZE[31011]</label>
<onclick>Skin.ToggleSetting(HomeMenuNoDiscDriveButton)</onclick>
<selected>Skin.HasSetting(HomeMenuNoDiscDriveButton)</selected>
<texturefocus>MenuItemFO.png</texturefocus>
<texturenofocus>MenuItemNF.png</texturenofocus>
</control>
<control type="radiobutton" id="216">
<description>Hide Disc Drive Button If No Media</description>
<width>750</width>
<height>40</height>
<font>font13</font>
<textcolor>grey2</textcolor>
<focusedcolor>white</focusedcolor>
<label> - $LOCALIZE[31125]</label>
<onclick>Skin.ToggleSetting(HomeDiscDriveButtonDiscOnly)</onclick>
<selected>Skin.HasSetting(HomeDiscDriveButtonDiscOnly)</selected>
<texturefocus>MenuItemFO.png</texturefocus>
<texturenofocus>MenuItemNF.png</texturenofocus>
<enable>!Skin.HasSetting(HomeMenuNoDiscDriveButton)</enable>
</control>

""""""""""""""""""""""""""""""""""""""""
Home.xml

""""""""""""""""""""""""""""""""""""""""

<item id="9">
<label>31011</label>
<label2>31010</label2>
<onclick>PlayDVD()</onclick>
<icon>special://skin/backgrounds/playdisc.jpg</icon>
<thumb>$INFO[Skin.String(Home_Custom_Back_PlayDisc_Folder)]</thumb>
<visible>System.HasMediaDVD</visible>
<visible>!Skin.HasSetting(HomeMenuNoDiscDriveButton)</visible>
</item>

""""""""""""""""""""""""""""""""""""""""
strings.xml

""""""""""""""""""""""""""""""""""""""""

<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?>
<strings>
<!-- home page labels -->
<string id="31010">Play The</string>
Reply

Logout Mark Read Team Forum Stats Members Help
Adding buttons0