beavis
Member
Posts: 76
Joined: Sep 2004
Reputation: 0
|
Jezz_X Wrote:If you look around line 500 of home.xml you will see
PHP Code:
<control type="button" id="102"> <description>Button2</description> <height>22</height> <width>320</width> <label>20343</label> <font>font12</font> <onclick>ActivateWindow(VideoLibrary,TvShowTitles)</onclick> <align>center</align> <aligny>center</aligny> <textcolor>grey</textcolor> <focusedcolor>white</focusedcolor> <texturefocus>-</texturefocus> <texturenofocus>-</texturenofocus> <visible>library.hascontent(tvshows)</visible> </control>
Thanks Jezz_X
Works like a charm now.
|
|
find
quote
|
Jezz_X
Team-XBMC Skinner
Posts: 5,269
Joined: Jun 2006
Reputation: 55
Location: Earth
|
craze7 Wrote:best skin on the xbox in a long time, but is it possible to change the font for the movie titles tho it looks a little cartoony!!!
i.e: ![[Image: screenshot001-1.jpg]](http://i3.photobucket.com/albums/y97/craze7/screenshot001-1.jpg)
There must be somthing wrong with how your version of XBMC is rendering the font (what are you using) mine looks like this
Skins I have done....
![[Image: skinsq.png]](http://img854.imageshack.us/img854/931/skinsq.png)
And others in the past...
Want to know what I'm working on currently? Check me out on Google+
|
|
find
quote
|
SandmanCL
Multi-platform XBMC fan
Posts: 573
Joined: Jul 2004
Reputation: 1
Location: San Francisco, CA
|
craze7: looks like you have selected a 16x9 resolution on a 4x3 screen ?
|
|
find
quote
|
dynamix
Senior Member
Posts: 173
Joined: Jan 2008
Reputation: 0
Location: Netherlands
|
Can someone explain me how to fix the "Programs" and "Emulators" links in the menu? Both bring me to the "Programs" list and not to the exact map on my harddrive. Thanks in advance!
I'm also wondering if it wouldn't be nice to adapt the music view, so it will first show a big album thumb and then fade to a smaller one including the album info. This view was called "Media Info" in the first Vision skin.
|
|
find
quote
|
shizzle
Senior Member
Posts: 196
Joined: Apr 2007
Reputation: 0
Location: sweden
|
been using this skin since it came out on my low res tv it looks damn sexy even though its a shitty tv
|
|
find
quote
|
xbs08
Posting Freak
Posts: 1,300
Joined: May 2008
Reputation: 0
Location: Portugal
|
I would like to add a "Play Disc" button to the "Run Scripts & Plugins" in the home screen, changing it to "Run Disc, Scripts & Plugins" in the Strings.xml.
I've notice a "empty" button assignment in the Home.xml (<control type="button" id="104"> just after the Apple Movie Trailers button assignment). Could i use this "empty button" to add my Run Disc botton, and if yes, can anyone tell me what code i have to change/add to acheive this?
Thanks
|
|
find
quote
|
m5a5l3m
Member
Posts: 67
Joined: Jul 2008
Reputation: -20
|
I was trying to add Cast Information on the Video Library main screen. I added the following code to ViewsVideoLibrary.xml:
<control type="textbox">
<description>Cast</description>
<posx>10</posx>
<posy>210</posy>
<width>355</width>
<height>150</height>
<font>font11</font>
<textcolor>white</textcolor>
<align>justify</align>
<label>$INFO[ListItem.CastAndRole]</label>
<autoscroll time="2000" delay="3000" repeat="5000">!Skin.HasSetting(AutoScroll)</autoscroll>
</control>
It doesn't work.
Can we show Cast information at all? I assumed so, because you show it on Movie Information. If I click on Movie Information, I can see the Cast there... Following code shows the button for Cast in DialogVideoInfo.xml. However, I couldn't find what built-in function it calls... Does anyone know?
<control type="button" id="5">
<description>Cast/Review</description>
<posx>0</posx>
<posy>0</posy>
<include>ButtonInfoDialogsCommonValues</include>
<label>206</label>
<onleft>11</onleft>
<onright>8</onright>
<onup>49</onup>
<ondown>50</ondown>
</control>
|
|
find
quote
|
xbs08
Posting Freak
Posts: 1,300
Joined: May 2008
Reputation: 0
Location: Portugal
|
Nevermind my latest post, after some research and tries i've manage to add the dvd button i wanted
|
|
find
quote
|
m5a5l3m
Member
Posts: 67
Joined: Jul 2008
Reputation: -20
|
xbs08 Wrote:Nevermind my latest post, after some research and tries i've manage to add the dvd button i wanted 
Can you post the code?
|
|
find
quote
|
xbs08
Posting Freak
Posts: 1,300
Joined: May 2008
Reputation: 0
Location: Portugal
|
Vision 2 – Strings.xml
<string id="31017">scripts, plugins & Disc</string>
I decided to put the Disc last because the button will be the last one in the list
Vision 2 – Home.xml
(when i mentioned "empty" button this was on a previous build, in the newer ones you will have to modify some stuff, this section is almost at the end, in the scripts part of the code)
<control type="button" id="104">
<description>Button4</description>
<height>22</height>
<width>320</width>
<label> Run Disc </label>
<font>font12</font>
<onclick>XBMC.PlayDVD()</onclick>
<align>center</align>
<aligny>center</aligny>
<textcolor>grey</textcolor>
<focusedcolor>white</focusedcolor>
<texturefocus>-</texturefocus>
<texturenofocus>-</texturenofocus>
<visible>System.HasMediadvd</visible>
</control>
Note: the button is visible only when there's a dvd/cd in the drive.
|
|
find
quote
|