2011-12-19, 04:11
only by checking out the T! svn repo and recomping the Textures.xbt file with your custom genre icon.
jasmindesylva Wrote:Hi Ronie,
Just started using transparency and was wondering if it has a 'full screen' button while watching movies? Like in Infkuebce.. I can stretch the movie to fit my screen?
Thanks
Jasmin
atlind01 Wrote:Ronie,
Is there a way to make the Music Player as the default view with full screen when I am playing audio?
atlind01 Wrote:Also can you show the sample rate and bitrate when playing the audio?in fullscreen, press either 'i', 'm' or 'o'.
ronie Wrote:nope, you can't choose different views in fullscreen.
in fullscreen, press either 'i', 'm' or 'o'.
(2012-04-04, 17:47)kmfdm515 Wrote: is there a way to always default a specific add-on/program to a certain view? for example, i use fanart view for most everything, but i'd like to always use the 'full list' view for the youtube add-on. when using the youtube add-on, it always defaults each selection back to the 'fanart' view after i change it to 'full list'. is that something managed by the skin, or the add-on?
edit: it appears that some of them do save the view...but i'd have to go through and change the view for each page manually. i see it's stored in viewmodes.db, but i'd have to go change every one manually (hundreds)...
(2012-04-04, 23:37)ronie Wrote: yup, it's exactly like that.thanks for the info ronie. extremely helpful, as always.
skins need to define a default view (fanart in Transparency!), so every page you open will initially be in fanart view.
if you change it, xbmc will save your preference.
(2012-05-09, 16:00)cjlove72 Wrote: In the various Library Views (e.g. Fanart, List, Media Info etc) my favourite would have to be Fanart...however I'd really like to have the IMDB rating displayed for each movie in the list that runs down the right-hand side. I've had a look through the various skin options in the GUI and can't see a way to do this...is it possible, or do I need to hack the View-Fanart.xml file (EEEK!) to achieve this?
<control type="label">
<posx>315</posx>
<posy>0</posy>
<width>305</width>
<height>30</height>
<font>font-20</font>
<textcolor>white</textcolor>
<selectedcolor>blue</selectedcolor>
<align>right</align>
<aligny>center</aligny>
<label>$INFO[ListItem.Rating]</label>
</control>
(2012-05-09, 18:22)ronie Wrote:(2012-05-09, 16:00)cjlove72 Wrote: In the various Library Views (e.g. Fanart, List, Media Info etc) my favourite would have to be Fanart...however I'd really like to have the IMDB rating displayed for each movie in the list that runs down the right-hand side. I've had a look through the various skin options in the GUI and can't see a way to do this...is it possible, or do I need to hack the View-Fanart.xml file (EEEK!) to achieve this?
yup, you'd need to modify the xml file.
after line 40 and line 90, insert this code:
Code:<control type="label">
<posx>315</posx>
<posy>0</posy>
<width>305</width>
<height>30</height>
<font>font-20</font>
<textcolor>white</textcolor>
<selectedcolor>blue</selectedcolor>
<align>right</align>
<aligny>center</aligny>
<label>$INFO[ListItem.Rating]</label>
</control>