![]() |
|
|||||||
| xTV Subforum for the xTV take one skin (and mods for/of it). |
![]() |
|
|
Thread Tools | Search this Thread | Display Modes |
|
|
#1 |
|
Member
Join Date: Apr 2008
Posts: 43
![]() |
Hiyas:
Any way to get rid of the generic folder icons in xTV's Library Menu. For example, these: ![]() ![]() I'd like to be able to swap those out with some relevant icons. And, speaking of these menus, is there any way to remove the "Recently Added" and/or "Playlists" folders from the menu? I don't see a need for them and would rather just have "Movies" and "TV Shows". Thanks! Eq |
|
|
|
|
|
#2 |
|
Member
Join Date: Apr 2008
Posts: 43
![]() |
Hmmm...no answer, so I guess it's not possible. Although I thought I saw different icons on the demo...
|
|
|
|
|
|
#3 |
|
Junior Member
Join Date: May 2008
Posts: 15
![]() |
The easiest way to do this is to download the svn tree and use that as your skin instead of the skin files. You can then change any image you want. They are in a folder called media
|
|
|
|
|
|
#4 |
|
Team-XBMC Developer
Join Date: Oct 2003
Posts: 15,077
![]() |
You can change the icons just by adding icons with the appropriate name to the skin's media folder. They are:
Code:
case NODE_TYPE_TITLE_MOVIES:
if (strDirectory.Equals("videodb://1/2/"))
return "DefaultMovieTitle.png";
return "";
case NODE_TYPE_TITLE_TVSHOWS:
if (strDirectory.Equals("videodb://2/2/"))
return "DefaultTvshowTitle.png";
return "";
case NODE_TYPE_TITLE_MUSICVIDEOS:
if (strDirectory.Equals("videodb://3/2/"))
return "DefaultMusicVideoTitle.png";
return "";
case NODE_TYPE_ACTOR: // Actor
return "DefaultActor.png";
case NODE_TYPE_GENRE: // Genres
return "DefaultGenre.png";
case NODE_TYPE_YEAR: // Year
return "DefaultYear.png";
case NODE_TYPE_DIRECTOR: // Director
return "DefaultDirector.png";
case NODE_TYPE_MOVIES_OVERVIEW: // Movies
return "DefaultMovies.png";
case NODE_TYPE_TVSHOWS_OVERVIEW: // TV Shows
return "DefaultTvshows.png";
case NODE_TYPE_RECENTLY_ADDED_MOVIES: // Recently Added Movies
return "DefaultRecentlyAddedMovies.png";
case NODE_TYPE_RECENTLY_ADDED_EPISODES: // Recently Added Episodes
return "DefaultRecentlyAddedEpisodes.png";
case NODE_TYPE_RECENTLY_ADDED_MUSICVIDEOS: // Recently Added Episodes
return "DefaultRecentlyAddedMusicVideos.png";
case NODE_TYPE_STUDIO: // Studios
return "DefaultStudios.png";
case NODE_TYPE_MUSICVIDEOS_OVERVIEW: // Music Videos
return "DefaultMusicVideos.png";
In the future, the aim is to have the video library hierachy completely user-specified.
__________________
Always read the XBMC online-manual, FAQ and search the forum before posting. Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules. For troubleshooting and bug reporting please make sure you read this first.
|
|
|
|
|
|
#5 |
|
Senior Member
Join Date: Apr 2008
Posts: 123
![]() |
ooh! that should be in the Wiki! I wish I'd known you could do that!!
__________________
I'm a lurker, not a fighter! |
|
|
|
|
|
#6 |
|
Senior Member
Join Date: Apr 2008
Posts: 123
![]() |
OK I don't know what I'm doing wrong, I created an icon for each of the filenames listed above and added them to the xpr but not all of them show up
![]() These don't show up "DefaultMovieTitle.png" "DefaultMovies.png" "DefaultTvshows.png" "DefaultRecentlyAddedMovies.png" "DefaultRecentlyAddedEpisodes.png" These show up ok "DefaultTvshowTitle.png" "DefaultActor.png" "DefaultGenre.png" "DefaultYear.png" "DefaultDirector.png" "DefaultStudios.png" These I didn't test "DefaultRecentlyAddedMusicVideos.png" "DefaultMusicVideoTitle.png" "DefaultMusicVideos.png" Any idea what I might be doing wrong? It seems odd that it works for some of them
__________________
I'm a lurker, not a fighter! |
|
|
|
|
|
#7 |
|
Team-XBMC Wiki Content Manager
Join Date: May 2004
Posts: 2,950
![]() |
This is consistent with my findings from a while back, there definitely is a bug there.
I think that is the main reason I didn't put anything in the wiki at the time. (probably was avaiting feedback from a dev). Hopefully a dev picks it up and fixes it soon.
__________________
Always read the XBMC online-manual, FAQ and search the forum before posting. Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules. For troubleshooting and bug reporting please make sure you read this first.
|
|
|
|
|
|
#8 |
|
Team-XBMC Developer
Join Date: Oct 2003
Posts: 15,077
![]() |
Fixed in SVN.
Note that only the ones in the root view didn't display. Cheers, Jonathan
__________________
Always read the XBMC online-manual, FAQ and search the forum before posting. Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules. For troubleshooting and bug reporting please make sure you read this first.
|
|
|
|
|
|
#9 |
|
Team-XBMC Wiki Content Manager
Join Date: May 2004
Posts: 2,950
![]() |
Thanks, but I can confirm that "DefaultMovieTitle.png" did not show if it accounts for anything.
Now ChoccyHobNob, where would you suggest we put this in the Wiki?
__________________
Always read the XBMC online-manual, FAQ and search the forum before posting. Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules. For troubleshooting and bug reporting please make sure you read this first.
Last edited by sho; 2008-06-30 at 13:31. |
|
|
|
|
|
#10 |
|
Team-XBMC Wiki Content Manager
Join Date: May 2004
Posts: 2,950
![]() |
My bad, JM is correct. DefaultMovieTitle.png works just fine.
It is a little strange though that when flattened the node icons fall back to the title icons, but the name sticks. IMHO the icon should stick if possible at all (must be possible as well as the name change).
__________________
Always read the XBMC online-manual, FAQ and search the forum before posting. Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules. For troubleshooting and bug reporting please make sure you read this first.
|
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|