Kodi Community Forum
[RELEASE] Aeon Nox 2.0 (deprecated) - 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: [RELEASE] Aeon Nox 2.0 (deprecated) (/showthread.php?tid=89151)



- BigNoid - 2011-05-28

tmoneybags Wrote:Could you please elaborate?

Do I just cut and paste to reorder or do I renumber the "item id"?

I don't want to screw it up.
Screwing up is the best way to learn Wink
The ID's should never be renamed, only the order of the content items should.
For example, before it's pictures, music, movies, tvshows, custom playlist1:
Code:
<item id="4">
            <label>1</label>
            <onclick>ActivateWindow(Pictures)</onclick>
            <icon>special://skin/backgrounds/pictures.jpg</icon>
            <thumb>$INFO[Skin.String(Home_Custom_Back_Pictures_Folder)]</thumb>
            <visible>!Skin.HasSetting(HomeMenuNoPicturesButton)</visible>
          </item>
          <item id="3">
            <label>2</label>
            <onclick>ActivateWindow(Music)</onclick>
            <icon>special://skin/backgrounds/music.jpg</icon>
            <thumb>$INFO[Skin.String(Home_Custom_Back_Music_Folder)]</thumb>
            <visible>!Skin.HasSetting(HomeMenuNoMusicButton) + !Skin.HasSetting(musicmenulibrary)</visible>
          </item>
          <item id="3">
            <label>2</label>
            <onclick>ActivateWindow(musiclibrary,albums,return)</onclick>
            <icon>special://skin/backgrounds/music.jpg</icon>
            <thumb>$INFO[Skin.String(Home_Custom_Back_Music_Folder)]</thumb>
            <visible>!Skin.HasSetting(HomeMenuNoMusicButton) + Skin.HasSetting(musicmenulibrary)</visible>
          </item>
          <item id="10">
            <label>20342</label>
            <onclick>ActivateWindow(VideoLibrary,MovieTitles,return)</onclick>
            <icon>special://skin/backgrounds/movies.jpg</icon>
            <thumb>$INFO[Skin.String(Home_Custom_Back_Movies_Folder)]</thumb>
            <visible>Skin.HasSetting(HomeMenuNoMoviesButton) + Library.HasContent(Movies)</visible>
          </item>
          <item id="11">
            <label>20343</label>
            <onclick>ActivateWindow(VideoLibrary,TVShowTitles,return)</onclick>
            <icon>special://skin/backgrounds/tvshows.jpg</icon>
            <thumb>$INFO[Skin.String(Home_Custom_Back_TVShow_Folder)]</thumb>
            <visible>Skin.HasSetting(HomeMenuNoTVShowsButton) + Library.HasContent(TVShows)</visible>
          </item>
<include condition="Skin.HasSetting(HomeMenuVideoPlaylist1)">CustomMainSPL1</include>
After it's custom playlist 1, movies, pictures, tvshows, music:
Code:
<include condition="Skin.HasSetting(HomeMenuVideoPlaylist1)">CustomMainSPL1</include>
       <item id="10">
            <label>20342</label>
            <onclick>ActivateWindow(VideoLibrary,MovieTitles,return)</onclick>
            <icon>special://skin/backgrounds/movies.jpg</icon>
            <thumb>$INFO[Skin.String(Home_Custom_Back_Movies_Folder)]</thumb>
            <visible>Skin.HasSetting(HomeMenuNoMoviesButton) + Library.HasContent(Movies)</visible>
          </item>
          <item id="4">
            <label>1</label>
            <onclick>ActivateWindow(Pictures)</onclick>
            <icon>special://skin/backgrounds/pictures.jpg</icon>
            <thumb>$INFO[Skin.String(Home_Custom_Back_Pictures_Folder)]</thumb>
            <visible>!Skin.HasSetting(HomeMenuNoPicturesButton)</visible>
          </item>
             <item id="11">
            <label>20343</label>
            <onclick>ActivateWindow(VideoLibrary,TVShowTitles,return)</onclick>
            <icon>special://skin/backgrounds/tvshows.jpg</icon>
            <thumb>$INFO[Skin.String(Home_Custom_Back_TVShow_Folder)]</thumb>
            <visible>Skin.HasSetting(HomeMenuNoTVShowsButton) + Library.HasContent(TVShows)</visible>
          </item>
          <item id="3">
            <label>2</label>
            <onclick>ActivateWindow(Music)</onclick>
            <icon>special://skin/backgrounds/music.jpg</icon>
            <thumb>$INFO[Skin.String(Home_Custom_Back_Music_Folder)]</thumb>
            <visible>!Skin.HasSetting(HomeMenuNoMusicButton) + !Skin.HasSetting(musicmenulibrary)</visible>
          </item>
          <item id="3">
            <label>2</label>
            <onclick>ActivateWindow(musiclibrary,albums,return)</onclick>
            <icon>special://skin/backgrounds/music.jpg</icon>
            <thumb>$INFO[Skin.String(Home_Custom_Back_Music_Folder)]</thumb>
            <visible>!Skin.HasSetting(HomeMenuNoMusicButton) + Skin.HasSetting(musicmenulibrary)</visible>
          </item>
Note that items with the same ID are the same menu-item, only the visibility conditions differ.


- tmoneybags - 2011-05-28

Thanks. Got it working.


- drivesoslow - 2011-05-29

FYI here is a bug (and a fix) effecting all the Aeon based skins

http://trac.xbmc.org/ticket/11585


- Shinu - 2011-05-29

YAY!!! Finally stickied!!! Laugh


- BigNoid - 2011-05-29

drivesoslow Wrote:FYI here is a bug (and a fix) effecting all the Aeon based skins

http://trac.xbmc.org/ticket/11585

Thx for the info, but this is not an issue in the eden-pre version of Nox (fixed that some time ago). You shouldn't use the dharma version of the skin anyway in the nightlies, that's why there are no more skins in the repo in the nightlies.


- gav1577 - 2011-05-29

Hi i just updated to to the latest stable release of aeon nox from google code, and have noticed, that the add favorites to home menu is not working, when i click the the -Favorites path tab the box pops up empty with no selection of favorites to choose from.
anyone know a fix for this ? cheers


- BigNoid - 2011-05-29

gav1577 Wrote:Hi i just updated to to the latest stable release of aeon nox from google code, and have noticed, that the add favorites to home menu is not working, when i click the the -Favorites path tab the box pops up empty with no selection of favorites to choose from.
anyone know a fix for this ? cheers

It should work, you may have to wait a bit the first time for the items to show up in the list.
If it's not working I'll need a debug log to tell what's going wrong.


- gav1577 - 2011-05-29

Ok mate will test it now Wink

Edit :Ok it not working i just tried again and waited a fair while with no luck .
Here is the debug http://pastebin.com/iWcEKVX7


- gav1577 - 2011-05-29

Ok just downloaded the old version from xbmc addons it installed the favorites script in addons that was missing, now the newer build works :-) Why would this have been missing ? or was i supposed to download it from somewhere? it was a clean install of xbmc 10.1.


- BigNoid - 2011-05-29

gav1577 Wrote:Ok just downloaded the old version from xbmc addons it installed the favorites script in addons that was missing, now the newer build works :-) Why would this have been missing ? or was i supposed to download it from somewhere? it was a clean install of xbmc 10.1.

yeah the problem was the missing favorites script. It's supposed to fetch it on install from skin, so I don't know what wrong. I also see it hasn't fetched the randomitems script, which it's also supposed to do.


- gav1577 - 2011-05-29

Big_Noid Wrote:yeah the problem was the missing favorites script. It's supposed to fetch it on install from skin, so I don't know what wrong. I also see it hasn't fetched the randomitems script, which it's also supposed to do.

Yea what i did was a fresh install of xbmc then done a checkout with tortoise svn from http://aeon--nox.googlecode.com/svn/trunk then added it to the addon folder manually so i guess that's what happened. Btw where can i get the he randomitems script? thanks


- BigNoid - 2011-05-30

gav1577 Wrote:Yea what i did was a fresh install of xbmc then done a checkout with tortoise svn from http://aeon--nox.googlecode.com/svn/trunk then added it to the addon folder manually so i guess that's what happened. Btw where can i get the he randomitems script? thanks

Okay, maybe it only fetches the addons when installed through the repobrowser, will have to test that. Here's the randomitems script:
http://mirrors.xbmc.org/addons/dharma/script.randomitems/script.randomitems-1.0.11.zip


- gav1577 - 2011-05-30

Big_Noid Wrote:Okay, maybe it only fetches the addons when installed through the repobrowser, will have to test that. Here's the randomitems script:
http://mirrors.xbmc.org/addons/dharma/script.randomitems/script.randomitems-1.0.11.zip

Thanks you Big_Noid much appreciated Smile


- meridius - 2011-05-30

Hi there

Just tried out your skin and i like it alot but theres only a couple of things i miss from using alaska skin and i was woundering if your going to add them.

1. TV and movie filetypes, would it be possable to do this with tv & movie logos.
filenames with web-dl in there names displays a WEBTV logo
filenames with DVD in there names displays a DVD logo
Filenames with Bluray in there names displays a Bluray logo
filenames with HDTV in there names displays a HDTV logo
fienames with x264 in there names displays a H264 logo

alaska has this and the reason its good with logos is so that i know what filetypes my movies and tv shows are for eg i have HDTV, web-dl, x264 amd blu ray tv shows and all show up as h264 logos on alaska it shows all the right file formats and i can tell which is witch.

It might be a good feature to add, could you tell me if its going to get added in the future ?

try alaska and that will give you an idea how the logos work

has it been added to your other skins to ?

thanks


- anarchintosh - 2011-05-30

hey meridius, it already does that,

You have to go to Settings > Skin > Viewtype

and set "Show source flag instead of codec flag" to true