XBMC Community Forum
Transparency! v3.11.7 for xbmc dharma 10.1 - Printable Version

+- XBMC Community Forum (http://forum.xbmc.org)
+-- Forum: Help and Support (/forumdisplay.php?fid=33)
+--- Forum: Skin Help and Support (/forumdisplay.php?fid=67)
+---- Forum: Transparency! (/forumdisplay.php?fid=115)
+---- Thread: Transparency! v3.11.7 for xbmc dharma 10.1 (/showthread.php?tid=82435)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43


- CinemaPat - 2011-07-08 19:13

ronie Wrote:sorry, there's no xbox compatible version of Transparency!

Sorry, to clarify it is not available in the following path using XBMC on Apple TV 2

Transparency! v3.11.5 is now available through the xbmc addon system:
Settings > Add-ons > Get Add-ons > XBMC.org Add-ons > Skin > Transparency!

Not found....


- ronie - 2011-07-08 19:54

CinemaPat Wrote:Sorry, to clarify it is not available in the following path using XBMC on Apple TV 2

Transparency! v3.11.5 is now available through the xbmc addon system:
Settings > Add-ons > Get Add-ons > XBMC.org Add-ons > Skin > Transparency!

Not found....

yup, that's for xbmc dharma.

atv2 recently switched to xbmc pre-eden.
will try to get T! in the pre-eden addon repo over the next days.


- CinemaPat - 2011-07-08 20:20

Great, thank you so much for the quick response. I'll keep an eye on the repo.


- jpf55 - 2011-07-18 20:42

Hi ronie,
After you faint, please look at this modified fanart view.

[Image: 5951598206_73b2f64afb_z_d.jpg]

I have already placed the plot and changed the font size.

I want the background black to make it really easy for a bat to read the plot.

I also want the fanart in the middle below the title etc.

I've been looking at View-Fanart.xml but can't figure out where you load the fanart, in my mind it should be at 0,0 and be at least 1280 pixels but i could not find anything close... can you help

Thanks


- ronie - 2011-07-18 22:07

jpf55 Wrote:I've been looking at View-Fanart.xml but can't figure out where you load the fanart, in my mind it should be at 0,0 and be at least 1280 pixels but i could not find anything close... can you help

look in MyVideoNav.xml ;-)


- jpf55 - 2011-07-18 23:34

ronie Wrote:look in MyVideoNav.xml ;-)

Thanks ronie,

Oh Darn, it works perfectly but, it also changes the fanart view for TVshows and I did not want to change that one, just the movies.


- ronie - 2011-07-18 23:52

jpf55 Wrote:Thanks ronie,

Oh Darn, it works perfectly but, it also changes the fanart view for TVshows and I did not want to change that one, just the movies.

then you'd need to duplicate the fanart code and add
Container.Content(Movies) / Container.Content(TVShows)
to the respective visible conditions.


- jpf55 - 2011-07-19 00:19

ronie Wrote:then you'd need to duplicate the fanart code and add
Container.Content(Movies) / Container.Content(TVShows)
to the respective visible conditions.

Now I'm really confused, I got it to work but, only if Movies and TVshows are reversed in Container.Content()... Can you understand that one?

By the way you may notice I have also moved the Trailer icon closer to the title info and the list.
Code:
    <control type="image">
    <!-- THIS IS TO SHOW THE fanart in the middle bottom half of the screen    for Movies -->     
     <posx>257</posx>
     <posy>350</posy>
         <width>600</width>
         <height>337</height>
         <texture background="true">$INFO[ListItem.Property(Fanart_Image)]</texture>
    <aspectratio>scale</aspectratio>
    <fadetime>FanartCrossfadeTime</fadetime>
    <include>VisibleFadeEffect</include>
    <include condition="Skin.HasSetting(AnimateFanart)">backgroundanimation</include>
    <visible>!Container.Content(TVshows) + !IsEmpty(ListItem.Property(Fanart_Image)) + ![Control.IsVisible(592) + !Window.IsVisible(MovieInformation)] + ![Player.HasVideo + Skin.HasSetting(VideoBackgrounds)]</visible>
</control>
<control type="image">
  <!-- THIS IS TO SHOW THE fanart normally for TVshows     -->     
        <posx>0</posx>
        <posy>0</posy>
    <width>1280</width>
    <height>720</height>
        <texture background="true">$INFO[ListItem.Property(Fanart_Image)]</texture>
    <aspectratio>scale</aspectratio>
    <fadetime>FanartCrossfadeTime</fadetime>
    <include>VisibleFadeEffect</include>
    <include condition="Skin.HasSetting(AnimateFanart)">backgroundanimation</include>
    <visible>!Container.Content(Movies) + !IsEmpty(ListItem.Property(Fanart_Image)) + ![Control.IsVisible(592) + !Window.IsVisible(MovieInformation)] + ![Player.HasVideo + Skin.HasSetting(VideoBackgrounds)]</visible>
</control>
[Image: 5951814921_7d18fe7b12_z_d.jpg][Image: 5951814721_dd5691390f_z.jpg]


- ronie - 2011-07-19 00:33

jpf55 Wrote:Now I'm really confused, I got it to work but, only if Movies and TVshows are reversed in Container.Content()

then don't add a ! in front of them.


- jpf55 - 2011-07-19 00:45

ronie Wrote:then don't add a ! in front of them.

You must be laughing your head off at my ignorance, Of course it works but this is even more confusing.

Why would an ! do that ?

Thanks