Okay, I just loaded the skin, and after some playing, was able to get the coverart to show. How to do this is perform the following:
1) First goto the movies screen prior to entering the skin editor
2) If you have setup XANT to create 2 databases (family and adult), make sure one of them is selected
3) Enter the skin editor
4) Make sure the "Item" tab is selected...by default it usually is when you enter the skin editor.
5) You should see in the skin a green dotted rectangle where the database is supposed to be. Move your mouse to somewhere within the rectangle and select it (left click)
6) If selected, you should the see a white outline around the green dotted rectangle, with resizing squares in each corner.
7) In the skin editor, click on the "Category" tab.
8 ) In the category editor, click on the "Database" tab.
9) You should see a window listing all your databases. Now if you have selected the Family setting, select the "family" database. If you chose the Adult setting, select the "adult" database.
10) You should now be able to see the proper database
11) Close the skin editor, and you should be good to go.
Now to give you some other tips, outside of the skin editor. More to do with ANT and XANT. Here is my XANT.ini file that I use:
- Code: Select all
[RMovies]
input=\\Tower\disk1\Ant Movie Catalog\Catalogs\movies.amc
output=c:\Program Files\Xlobby\databases\rratedmovies.xml
images=\\Tower\disk1\Ant Movie Catalog\Pochettes movies\
sort=$$ITEM_ORIGINALTITLE
template=c:\Program Files\Xlobby\plugins\moviestemplate.xml
filters=$$ITEM_BORROWER(mature)
[ChildrenMovies]
input=\\Tower\disk1\Ant Movie Catalog\Catalogs\movies.amc
output=c:\Program Files\Xlobby\databases\childrenmovies.xml
images=\\Tower\disk1\Ant Movie Catalog\Pochettes movies\
sort=$$ITEM_ORIGINALTITLE
template=c:\Program Files\Xlobby\plugins\moviestemplate.xml
filters=$$ITEM_BORROWER(children)
There is also a recorded tv show section which is setup in the same way. What this allows now is the use of one Ant Catalog. Easier to maintain then having seperate catalogs for mature movies, and a second catalog for family movies. It will create two databases as indicated in each "output" settings. This is determined by the "filters" line $$ITEM_BORROWER(mature/children) The minor issue here is that it takes all the coverart and creates a rratedmovies copy of coverart and a childrenmovies copy of the coverart (and a recorded tv copy to boot for me).
My moviestemplate.xml file is the following:
- Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<database>
<sortorder>sorttitle</sortorder>
<sortable>
<sort>actors</sort>
<sort>title</sort>
<sort>sorttitle</sort>
<sort>genre</sort>
<sort>director</sort>
<sort>year</sort>
<sort>starimage</sort>
<sort>rating</sort>
<sort>name</sort>
</sortable>
<template/>
<paths>
<path/>
</paths>
<item>
<parameter>$$ITEM_URL</parameter>
<coverart>$$ITEM_PICTUREFILENAME</coverart>
<display>$$ITEM_TRANSLATEDTITLE</display>
<offline></offline>
<information>
<name>$$ITEM_ORIGINALTITLE</name>
<title>$$ITEM_ORIGINALTITLE</title>
<sorttitle>$$ITEM_TRANSLATEDTITLE</sorttitle>
<director>$$ITEM_DIRECTOR</director>
<runtime>$$ITEM_LENGTH</runtime>
<plot>$$ITEM_DESCRIPTION</plot>
<actors>$$ITEM_ACTORS</actors>
<starimage>skin://buttons/stars/star$$ITEM_RATING.png</starimage>
<year>$$ITEM_YEAR</year>
<genre>$$ITEM_CATEGORY</genre>
<rating>$$ITEM_RATING/100</rating>
<fanart>$$ITEM_MEDIA</fanart>
</information>
</item>
</database>
See the attached image of my Ant Catalog setup for any given movie. I try and keep it as simple as possible. I've added some descriptions of some of the entries...everything else is pretty much self exclamatory.
Hope this all helps. Let us know if you get the database displayed, and that you can actually watch movies.