XBMC Community Forum
[MOD] BIG Alaska - 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: Alaska (/forumdisplay.php?fid=126)
+---- Thread: [MOD] BIG Alaska (/showthread.php?tid=70890)

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


- Amra - 2010-04-06 18:43

Darkcloud28 Wrote:hello again , i just like to ask how and if its easy to change fonts of the Movie title in a fanart mode to a big fat ones like the AM-PM (time)

Obviously backup your Viewtype_Fanart.xml first then edit it & search for "Font_Panel" and change all instances to "Font_PosterTitle". That should give you the bigger font like the titles in the Poster Wrap view.


Quote:and also i have small problem , its not a big one ...when i sort my movies and play them : after i press STOP in my remote control , the Alaska is gowing to the First movie in my catalog , not to the one i watch , so i have to look for the movie in order to playit again .
That must be something to do with my xml in the Fanart view as I just tested & it only happens in that view. I'll look into it and post a patch if I can find what I did wrong. Still have a lot to learn. Confused


- mcborzu - 2010-04-07 02:43

Amra Wrote:That must be something to do with my xml in the Fanart view as I just tested & it only happens in that view. I'll look into it and post a patch if I can find what I did wrong. Still have a lot to learn. Confused

My guess, or Sharpe (Backrow skin) had the same problem and helped me, said it is usually from having multiple id's but different visibles/conditions like:


Quote:<control type="fixedlist" id="54">
<visible>Container.Content(movies)</visible>
Quote:<control type="fixedlist" id="54">
<visible>Container.Content(tvshows)</visible>
Quote:<control type="fixedlist" id="54">
<visible>Container.Content(episodes)</visible>

I took a peek and think you're only using id="54" once so I'm stumped?


- Amra - 2010-04-07 04:10

mcborzu Wrote:My guess, or Sharpe (Backrow skin) had the same problem and helped me, said it is usually from having multiple id's but different visibles/conditions like:


I took a peek and think you're only using id="54" once so I'm stumped?
That actually was it. I needed to assign new ID numbers in the MyVideoNav.xml file with the <views> tag. I had figured it out thanks to a previous post by you in another thread. It seems you already helped me without even knowing it. Big Grin

[EDIT] I should mention that the problem was also happening with the Panel view.

Anyway, Ive fixed it on my computer but I want to try fixing the VideoInfo/Cast problem before posting a new version.


- Necromancyr - 2010-04-07 04:16

Just curious, but will this work on 4:3 TVs? Trying to get an XBOX based XBMC setup on one without completely redoing a skin Smile


- Amra - 2010-04-07 04:58

Necromancyr Wrote:Just curious, but will this work on 4:3 TVs? Trying to get an XBOX based XBMC setup on one without completely redoing a skin Smile
No, It is not designed for a 4:3 TV.

However, with that being said, I use it on a 7 year old 32" CRT (4:3) TV but it displays in letterbox format via a HDMI cable connection from my computer. With the changes I made, I can comfortably read the text from 10 feet away on my couch.


- Darkcloud28 - 2010-04-07 04:59

Amra Wrote:Obviously backup your Viewtype_Fanart.xml first then edit it & search for "Font_Panel" and change all instances to "Font_PosterTitle". That should give you the bigger font like the titles in the Poster Wrap view.



That must be something to do with my xml in the Fanart view as I just tested & it only happens in that view. I'll look into it and post a patch if I can find what I did wrong. Still have a lot to learn. Confused

thank You one more time Smile)) i Clear all of My skin colors (32 skins Wink and they all almost clear that why i need it to have big fonts so they stand out from the fanart.

its so much work to do anything , i cant bilive that You working so hard .

now i just have to find code for a very bright color ...red or green ...i have problem with making very strong yellow color Sad(

thank You one more time , and i will love to put screenshots but dont know how yet ,


- muggi - 2010-04-07 16:43

HI,

i´ve tried to mod the fanart backdrops in the Big Alaska viewtypes.xml and add the Ken Burns Effect to it. But i can´t find the section, where the fanart-pics are defined... please help.....

greetz muggi


- Amra - 2010-04-07 16:55

muggi Wrote:HI,

i´ve tried to mod the fanart backdrops in the Big Alaska viewtypes.xml and add the Ken Burns Effect to it. But i can´t find the section, where the fanart-pics are defined... please help.....

greetz muggi
In the beginning of the MyVideoNav.xml file, look for this section about 7 or 8 lines down:

Code:
<control type="largeimage">
            <include>Dimensions_Fullscreen</include>
            <fadetime>200</fadetime>
            <texture>$INFO
[ListItem.Property(Fanart_Image)]</texture>
            <include>Animation_CommonFade</include>
            <visible>!Skin.HasSetting(hidefanart) + !Skin.HasSetting(hidePosterfanart)</visible>
        </control>
        <control type="largeimage">
            <include>Dimensions_Fullscreen</include>
            <fadetime>200</fadetime>
            <texture>$INFO
[ListItem.Property(Fanart_Image)]</texture>
            <include>Animation_CommonFade</include>
            <visible>!Skin.HasSetting(hidefanart) + Skin.HasSetting(hidePosterfanart) + !Control.IsVisible(50) + !Control.IsVisible(57)</visible>
        </control>
[EDIT] If you don't care about hiding only the Poster view (Wrap/Fixed) fanart then you can replace the code above with the original Alaska code before doing your modifications:

Code:
<control type="largeimage">
            <include>Dimensions_Fullscreen</include>
            <fadetime>400</fadetime>
            <texture>$INFO
[ListItem.Property(Fanart_Image)]</texture>
            <include>Animation_CommonFade</include>
            <visible>!Skin.HasSetting(hidefanart)</visible>
        </control>



- Amra - 2010-04-07 17:04

@muggi

Also, just in case it will save you from doing your changes twice, I am doing some fixes that affect the MyVideoNav.xml file as well as others. I hope to post it tomorrow.


- muggi - 2010-04-07 17:43

It works fine.... it look´s good... maybe an option for your (Amra´s) next releaseConfused
Maybe with configurable (on/off)

here my MyVideoNav.xml:

Code:
            <control type="largeimage">
            <include>Dimensions_Fullscreen</include>
            <fadetime>200</fadetime>
            <texture>$INFO[ListItem.Property(Fanart_Image)]</texture>
            <include>Animation_CommonFade</include>
            <animation effect="zoom" start="110" end="130" center="auto" time="15000" tween="cubic" easing="inout" pulse="true" condition="!Skin.HasSetting(animation_bg)">Conditional</animation>
            <animation effect="slide" start="-10,-10" end="20,20" time="7000" tween="cubic" easing="inout" pulse="true" condition="!Skin.HasSetting(animation_bg)">Conditional</animation>
            <animation effect="rotate" center="360,640" start="-2" end="2" time="11000" tween="cubic" easing="inout" pulse="true" condition="!Skin.HasSetting(animation_bg)">Conditional</animation>
            <visible>!Skin.HasSetting(hidefanart) + !Skin.HasSetting(hidePosterfanart)</visible>
        </control>
        <control type="largeimage">
            <include>Dimensions_Fullscreen</include>
            <fadetime>200</fadetime>
            <texture>$INFO[ListItem.Property(Fanart_Image)]</texture>
            <include>Animation_CommonFade</include>
            <animation effect="zoom" start="110" end="130" center="auto" time="15000" tween="cubic" easing="inout" pulse="true" condition="!Skin.HasSetting(animation_bg)">Conditional</animation>
            <animation effect="slide" start="-10,-10" end="20,20" time="7000" tween="cubic" easing="inout" pulse="true" condition="!Skin.HasSetting(animation_bg)">Conditional</animation>
            <animation effect="rotate" center="360,640" start="-2" end="2" time="11000" tween="cubic" easing="inout" pulse="true" condition="!Skin.HasSetting(animation_bg)">Conditional</animation>
            <visible>!Skin.HasSetting(hidefanart) + Skin.HasSetting(hidePosterfanart) + !Control.IsVisible(50) + !Control.IsVisible(57)</visible>
        </control>


The Ken Burns Effect was stolen from another post..... maybe with a bit bad code....

but works


greetz muggi