Vision 2 skin release

  Thread Rating:
  • 4 Votes - 4.75 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
beavis Offline
Member
Posts: 76
Joined: Sep 2004
Reputation: 0
Post: #241
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. Smile
find quote
Jezz_X Offline
Team-XBMC Skinner
Posts: 5,269
Joined: Jun 2006
Reputation: 55
Location: Earth
Post: #242
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]

There must be somthing wrong with how your version of XBMC is rendering the font (what are you using) mine looks like this
[Image: clipboardbg0.png]

Skins I have done....
[Image: skinsq.png]
And others in the past...

Want to know what I'm working on currently? Check me out on Google+
find quote
SandmanCL Offline
Multi-platform XBMC fan
Posts: 573
Joined: Jul 2004
Reputation: 1
Location: San Francisco, CA
Post: #243
craze7: looks like you have selected a 16x9 resolution on a 4x3 screen ?
find quote
dynamix Offline
Senior Member
Posts: 173
Joined: Jan 2008
Reputation: 0
Location: Netherlands
Post: #244
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 Offline
Senior Member
Posts: 196
Joined: Apr 2007
Reputation: 0
Location: sweden
Post: #245
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 Offline
Posting Freak
Posts: 1,300
Joined: May 2008
Reputation: 0
Location: Portugal
Post: #246
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 Offline
Member
Posts: 67
Joined: Jul 2008
Reputation: -20
Post: #247
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 Offline
Posting Freak
Posts: 1,300
Joined: May 2008
Reputation: 0
Location: Portugal
Post: #248
Nevermind my latest post, after some research and tries i've manage to add the dvd button i wanted Smile
find quote
m5a5l3m Offline
Member
Posts: 67
Joined: Jul 2008
Reputation: -20
Post: #249
xbs08 Wrote:Nevermind my latest post, after some research and tries i've manage to add the dvd button i wanted Smile

Can you post the code?
find quote
xbs08 Offline
Posting Freak
Posts: 1,300
Joined: May 2008
Reputation: 0
Location: Portugal
Post: #250
Vision 2 – Strings.xml
<string id="31017">scripts, plugins &amp; 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
Post Reply