eweber1969 Wrote:1. In the movie library, I'm using landscape view and I have a couple of movie sets. Is there any way to set the movie set image in landscape view? I see the context menu option to specify a movie set image, but that only changes the cover.
Sorry, XBMC currently only allows you to change the cover (Poster) for a movie set. I think there has been talk of allowing the fanart to be changed also but I'm not sure of the status of that.
eweber1969 Wrote:2. In the TV library, I am easily able to specify the banner image (under Alaska it was folder.jpg, and in Big Alaska it is banner.jpg (not sure why the difference, but no matter)). It looks like there are 2 other images that I'm missing / not utilizing: the cover/poster (the big image in banner mixed mode), and the fanart (in fanart and fanart banner mode). What should the file names be for those 2 image types? (FYI -- I prefer to have xbmc use my pre-scraped images rather than having to manually set the image inside xbmc.)
From Post#1:
"
*This mod uses multiple TV Show image types (Poster, Banner & Landscape) at the same time. The following steps are necessary for BIG Alaska to work properly:
- Set your TV Show scraper to download Posters by default
- Download & save individual banner.jpg & landscape.jpg images to each TV Show folder (TheTVDB.com is a good source)."
This was done so that the user could have different TV show graphics at the same time instead of having to choose between just Poster & Banner and then having to rescrape all shows again just to change from a poster view to a banner view.
Basically, as long as you set XBMC to use posters when scraping and then have the "banner.jpg" and "landscape.jpg" files in your tvshow's main folder you should be okay. If you set the xbmc scrapers to poster then you will not need to save a jpg file for poster, instead XBMC will have that graphic in its database already.
On a side note, I usually download a Fanart image from TVDB for my Landscape.jpg file and then resize it to 640x360. That helps keep the landscape views snappy and still looks good.
eweber1969 Wrote:3. In TV mode, I see "Episodes = N" and "Unwatched = N". Is there any way to turn that off?
There isn't any built in option for BIG Alaska to do that (I may add an option for the next version now since someone has brought it up) but if you really don't like it you would have to edit the xml file for the view you are using.
For instance, if you want to remove that info from the Landscape view you will want to edit (back it up first) "Viewtype_Landscape.xml" and search for "unwatched". That should take you directly to a section of code that should look like this"
Code:
<control type="label">
<include>Animation_HiddenByInfo</include>
<posx>602</posx>
<posy>295</posy>
<width>290</width>
<height>24</height>
<font>Font_LandScapeTVShow</font>
<textcolor>LandscapeTitle</textcolor>
<label>[b]$INFO
[ListItem.Episode] $LOCALIZE[20360][/b]</label>
<visible>Container.Content(tvshows) | Container.Content(seasons)</visible>
</control>
<control type="label">
<include>Animation_HiddenByInfo</include>
<posx>602</posx>
<posy>322</posy>
<width>290</width>
<height>24</height>
<font>Font_LandScapeTVShow</font>
<textcolor>LandscapeTitle</textcolor>
<label>[b]$INFO
[ListItem.Property(UnwatchedEpisodes)] $LOCALIZE[16101][/b]</label>
<visible>Container.Content(tvshows) | Container.Content(seasons)</visible>
</control>
The first section displays the number of Episodes & the 2nd section displays the Unwatched number. In this instance, just delete the code above and then the Landscape view will not show that info any more.
Be aware that different views may be coded differently. All in all though, if you aren't comfortable editing the XBMC xml you may want to wait for the next version of BIG Alaska (probably in a couple weeks, or sooner) as I may add an option to disable this info. I don't think it will be that hard.