PDA

View Full Version : Problem with buttons in My Programs, Movies etc


thedirtyshark
2007-01-08, 01:14
Hi,

1) This problem has been bugging me for a while (i think since upgrading to version 2.0) and so I finally decided to upgrade to the T3CH 2006-12-17 build to try and resolve it. For some reason, a lot of my buttons in the side panel of My Programs or Movies or Music have no text and are therefore blank. I know what they're meant to say, but thats not the point. I thought it may have been where I'd edited myprograms.xml for example so just replaced the entire skin folder without keeping my alterations. It also happens in Settings and in other windows such as Appearance etc.

2) Now from replacing the entire skin folder, I've lost one of my favourite edits that I made previously. When pressing the info/white button whilst watching a movie, rather than just having the movie duration overlay come up in the top corner, I'd added a horizontal strip overlay towards the bottom of the screen that included the thumbnail of the movie and its title, year etc. i remember doing this after reading a post in this forum (i think) but cannot find it again. If anyone follows what I mean, could you point me to the correct file so I can grab the code and re-do this nifty little addition.

Cheers
Elliot

kraqh3d
2007-01-08, 01:33
1. you didnt upgrade correctly. the xbe, skin, and strings.xml all need be from the same exact version or you'll get problems like this. if you're only missing text, then you likely have an old strings file.

thedirtyshark
2007-01-08, 14:21
Cheers, that sounds about right. I was pretty lazy on my last upgrade and just copied my old strings.xml across to keep the edits I'd made and the same again with this upgrade. I'll have a look when I get home and repost if i have no luck.

Thanks for the quick response

thedirtyshark
2007-01-08, 19:59
Yup, that did the trick. Cheers

BAG_Ass
2007-01-08, 20:50
Was - in version 25.12 was problem with view button - in version 01.01 it apper again but not in russian, in english - i think later it return back in normal mode.

thedirtyshark
2007-01-09, 01:03
For (2) I found the addition I made, added this code to my VideoFullScreen.xml:

<!-- Remote Title/White Button Info -->

<control>
<description>Progressbar</description>
<type>progress</type>
<id>23</id>
<posx>506</posx>
<posy>83</posy>
<width>128</width>
<height>5</height>
<info>Player.Progress</info>
<midtexture>progress_mid-blue2.png</midtexture>
<overlaytexture>-</overlaytexture>
<visible>!VideoPlayer.IsFullscreen</visible>
</control>

<control>
<description>Media Info Background Image</description>
<type>image</type>
<id>1</id>
<posx>0</posx>
<posy>360</posy>
<width>740</width>
<height>120</height>
<texture>osd_menu_bg.png</texture>
<visible>Player.ShowInfo</visible>
</control>

<control>
<description>Cover Image</description>
<type>image</type>
<id>1</id>
<posx>50</posx>
<posy>370</posy>
<width>100</width>
<height>100</height>
<info>VideoPlayer.Cover</info>
<keepaspectratio>true</keepaspectratio>
<visible>Player.ShowInfo</visible>
</control>

<control>
<description>Title Label</description>
<type>label</type>
<id>1</id>
<posx>165</posx>
<posy>358</posy>
<width>445</width>
<info>VideoPlayer.Title</info>
<align>left</align>
<font>special13</font>
<visible>Player.ShowInfo</visible>
</control>

<control>
<description>Video Director/Year Label</description>
<type>label</type>
<id>1</id>
<posx>165</posx>
<posy>385</posy>
<width>430</width>
<label>$INFO[VideoPlayer.Director] $INFO[VideoPlayer.Year]</label>
<align>left</align>
<font>special12</font>
<visible>Player.ShowInfo</visible>
</control>

<control>
<description>Genre Label</description>
<type>label</type>
<id>1</id>
<posx>165</posx>
<posy>410</posy>
<width>430</width>
<label>$INFO[VideoPlayer.Genre]</label>
<align>left</align>
<font>font10</font>
<visible>Player.ShowInfo</visible>
</control>

<control>
<description>Volume Label</description>
<type>label</type>
<id>1</id>
<posx>650</posx>
<posy>358</posy>
<width>150</width>
<label>$INFO[Player.Volume]</label>
<align>right</align>
<font>special13</font>
<visible>Player.ShowInfo</visible>
</control>

to give a sweet looking info bar on the screen showing the imdb thumbnail, the name of the movie, the duration etc, when the info/white button is pressed.