Kodi Community Forum
Aeon Nox 3 Modding Thread - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Aeon Nox: Silvo (https://forum.kodi.tv/forumdisplay.php?fid=142)
+---- Thread: Aeon Nox 3 Modding Thread (/showthread.php?tid=137540)

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


RE: Aeon Nox 3 Modding Thread - braz - 2012-11-29

(2012-11-29, 08:40)crimsonfury Wrote:
(2012-11-29, 05:29)bryanbrazil Wrote:
(2012-11-29, 00:42)crimsonfury Wrote: bryanbrazil,

What line in the xml should I start with? Like I said there is Width mentioned a bunch of times....

I created a rough mod of the Nox 4.0 viewtype to get you started, and labeled the different sections for you. This should have everything you need to position things the way you want.

Viewtype_AddonWall.rtf

Would I be able to use this in 3.6.1?

I haven't checked, but I'm guessing you should find similar sections in the 3.x viewtype. You'll have to get your hands dirty and test it. Smile Just make a backup of the original file and you can always go back to it if something breaks.



RE: Aeon Nox 3 Modding Thread - braz - 2012-11-29

(2012-11-29, 01:57)ArieS Wrote: In Landscape view for Movies, I'm trying to display the Runtime instead of the Tagline.
What I did was open Viewtype_Landscape.xml and try to figure out what to edit, as I have no clue Blush
So I changed:

<control type="image">
<posy>-130</posy>
<width>1920</width>
<height>220</height>
<texture>views/logo_tagline_gradient.png</texture>
<colordiffuse>ffffffff</colordiffuse>
<visible>![Container.Content(movies) + IsEmpty(ListItem.TagLine)]</visible>
<visible>Skin.HasSetting(Nox.landscapeonelogo) + [Container.Content(tvshows) | Container.Content(movies)]</visible>
<include>Animation_CommonFade</include>
</control>

to

<control type="image">
<posy>-130</posy>
<width>1920</width>
<height>220</height>
<texture>views/logo_tagline_gradient.png</texture>
<colordiffuse>ffffffff</colordiffuse>
<visible>![Container.Content(movies) + IsEmpty(ListItem.RunTime)]</visible>
<visible>Skin.HasSetting(Nox.landscapeonelogo) + [Container.Content(tvshows) | Container.Content(movies)]</visible>
<include>Animation_CommonFade</include>
</control>
Of course, it's not working Sad
I'm sure it's fairly easy to do if you know what you are doing...
Anyone can help me with that?
Thanks!

I haven't looked at the viewtype, but based on this code snippet you just changed the visibility condition for the gradient background image. You need to look for the label that displays the tagline and change that to display the runtime.




RE: Aeon Nox 3 Modding Thread - ArieS - 2012-11-29

Thanks bryan for helping out.
The problem is, to me this is Chinese lol.
I tried to go by logic and look for something named tagline as it is in the NFOs but that was the only one I found and obviously that is not it.
Since this is for the Landscape view for Movies, it has to be in Viewtype_Landscape.xml, right? It's not somewhere else?


RE: Aeon Nox 3 Modding Thread - CutSickAss - 2012-11-30

(2012-11-29, 01:57)ArieS Wrote: In Landscape view for Movies, I'm trying to display the Runtime instead of the Tagline.
What I did was open Viewtype_Landscape.xml and try to figure out what to edit, as I have no clue Blush
So I changed:

<control type="image">
<posy>-130</posy>
<width>1920</width>
<height>220</height>
<texture>views/logo_tagline_gradient.png</texture>
<colordiffuse>ffffffff</colordiffuse>
<visible>![Container.Content(movies) + IsEmpty(ListItem.TagLine)]</visible>
<visible>Skin.HasSetting(Nox.landscapeonelogo) + [Container.Content(tvshows) | Container.Content(movies)]</visible>
<include>Animation_CommonFade</include>
</control>

to

<control type="image">
<posy>-130</posy>
<width>1920</width>
<height>220</height>
<texture>views/logo_tagline_gradient.png</texture>
<colordiffuse>ffffffff</colordiffuse>
<visible>![Container.Content(movies) + IsEmpty(ListItem.RunTime)]</visible>
<visible>Skin.HasSetting(Nox.landscapeonelogo) + [Container.Content(tvshows) | Container.Content(movies)]</visible>
<include>Animation_CommonFade</include>
</control>
Of course, it's not working Sad
I'm sure it's fairly easy to do if you know what you are doing...
Anyone can help me with that?
Thanks!

In Viewtype_Landscape.xml replace the two occurances of:
Code:
$VAR[LandscapeLogoLabelVar]

with this:
Code:
$INFO[ListItem.Duration,, $LOCALIZE[12391]]

or, if you want a bit more info, with this:
Code:
$VAR[InfoWallBottomLabel2Var]



RE: Aeon Nox 3 Modding Thread - ArieS - 2012-12-01

Thanks a lot CutSickAss, you rock!
It's perfect and I realize that I would have never figured that out by myself Big Grin



RE: Aeon Nox 3 Modding Thread - pisoj1 - 2012-12-15

Would someone be able to explain how to make episode fanart work?


Aeon Nox 3 Modding Thread - Chico0106 - 2014-01-14

How do I get big fan working in other add-ons?