[19. April 2013] A-400 Advanced Network Setup now available | [11 Jan. 2013] Customize your A-400 Home Screen

Firmware: A-400 [13 May 2013] | C-300 [30 Nov. 2012] | A-300 [30 Nov. 2012] | C-200 [21 Jan. 2013] | A-200/A-210 [10 Aug. 2012]

Just got your NMT | WIKI has the answers | Search the forum | Forum Rules/Policy | Firmware & Official NMT News | Popcornhour manuals



User(s) browsing this thread: 2 Guest(s)
Post Reply 
[HTML SKIN] All-in-One Package SabishGT skin [Update: 28.05.2011]
01-21-2013, 09:29 AM
Post: #2086
RE: All-in-One Package SabishGT skin [Update: 28.05.2011]
(01-20-2013 11:03 AM)tannnu Wrote:  I have done some testing and found out that the problem only exists if i create new jukebox with yamj latest version. Now i created jukebox with yamj 2.8. Then i upgraded yamj to latest version and rescanned library. This way everything works fine.

Add the line
Code:
imdb.preferredCountry=USA
to your moviejukebox.properties file and it will work fine

Visit this user's website Find all posts by this user
Add Thank You Quote this message in a reply
01-31-2013, 11:30 AM (This post was last modified: 01-31-2013 02:57 PM by boiydiego.)
Post: #2087
RE: All-in-One Package SabishGT skin [Update: 28.05.2011]
got a problem my tv shows are showed on the mainscreen toghetter with the moviecovers
but i want them to be in the tvshow menu
my setup of the maps is on root of the internal hdd ,map named -> media and in that map is a map Tv and a map Movies

so in yamjconfigmanger i set the moviefolder to scan to the map media so yamj scans my tvshows and movies toghetter .

how can i fix this that tvshows wil only show in the T mainscreen?
so in yamjconfigmanger i set the moviefolder to scan to the map media so yamj scans my tvshows and movies toghetter

thx in advance
Find all posts by this user
Add Thank You Quote this message in a reply
02-06-2013, 01:24 AM (This post was last modified: 02-06-2013 02:04 AM by RavenElite.)
Post: #2088
RE: All-in-One Package SabishGT skin [Update: 28.05.2011]
Find the file "Skin.properties" in the skin folder and look for the line, mjb.homePage and set that to whatever you want.. for example this will only show movies when you first load up
Code:
mjb.homePage=Other_Movies_1


I have a question as well hoping it can get answered here.. trying to make it so that the watched monitor program makes my watched files and updates XML so i don't have to rerun yamj every time.
doesn't show any issues in program so thinking its a skin issue. the program says it is supposed to work with HTML skins that support the watched feature on the fly(like using the red button to make it watched)so i am just wondering if there is any way to make it update if its been watched without scanning again? would save me a re scan every time i get lost from a TV show.

even if you point me in the right direction i can try to figure it out myself, I'm surprised how often I've actually figured it out myself once pointed in the right direction.

Thanks!
Find all posts by this user
Add Thank You Quote this message in a reply
04-15-2013, 05:55 PM
Post: #2089
RE: All-in-One Package SabishGT skin [Update: 28.05.2011]
I use a low power system(dockstar) to update my YAMJ and I turn off the features that I don't use instead of just ignoring them. I recently started trying out this skin and came across a bug.

If you set

Code:
mjb.playlist.generateMultiPart=false

all the playlistXX.jsp files don't get generated, which is what I want. But the Play All link in tv details links to the playlistXX.jsp versions. Here is my fix.

I changed line #177 from this
Code:
            <xsl:value-of select="concat(concat(concat(/details/movie/baseFilename,'.playlist'),/details/movie/files/file/@firstPart),'.jsp')" /></xsl:attribute>

to this
Code:
            <xsl:value-of select="concat(concat(/details/movie/baseFilename,'.playlist'),'.jsp')" /></xsl:attribute>

It now points to the playlist.jsp file and works fine.
Find all posts by this user
Add Thank You Quote this message in a reply
[+] 1 user says Thank You to Freakeao for this post
04-15-2013, 11:25 PM
Post: #2090
RE: All-in-One Package SabishGT skin [Update: 28.05.2011]
More Tweaks!

I make a jukebox with just my newest shows and movies, again because of my low power server. I wanted to reduce the number of indexes and I combined New-Tv and New-Movies into just New by doing this in categories-default.xml

Code:
<category name="New">
    <enable>false</enable>
    <rename>New</rename>
  </category>
  <category name="New-TV">
    <enable>true</enable>
    <rename>New</rename>
  </category>
  <category name="New-Movie">
    <enable>true</enable>
    <rename>New</rename>
  </category>

This resulted in two "New" links on the categories.html page. (Although the menu seemed fine with it). So I edited categories.xsl with some goodness found on the interwebs

old
Code:
<xsl:for-each select="index">

new
Code:
<xsl:for-each select="index[not(.=preceding::index)]">

Now one lovely New link.
Find all posts by this user
Add Thank You Quote this message in a reply
04-21-2013, 06:11 PM
Post: #2091
pc menu on tv detail page.
If you have use-pcmenu turned on it was not showing on the pc on the tv details page. I think this was as a fix to prevent it from showing at the bottom of the tv details page on the NMT. Here's my fix that shows the menu on the pc but does not on the NMT


edit tv-detail.xsl to change this

Code:
<xsl:if test="$use-pcmenu = 'true'">
  
<div id="noNMT">

to this

Code:
<xsl:if test="$use-pcmenu = 'true'">
  
<table><tr><td height="50"/></tr></table>


<div id="noNMT">

and delete this
Code:
    #noNMT {  visibility: hidden;  display: none;}
    #noNMT a {  visibility: hidden;  display: none;}
Find all posts by this user
Add Thank You Quote this message in a reply
04-25-2013, 05:17 PM
Post: #2092
RE: All-in-One Package SabishGT skin [Update: 28.05.2011]
I've been playing around with tv-detail.xsl for the past couple days trying to make the layout more closely match the lowlist movie layout. It's been interesting.

I've figured out some of the magic that seems to require the "play" link to stay focused so the page is displayed properly. Has anyone tried to do this before and figured out that it's impossible, or just pretty hard?

I can get it to display correctly (top bar on the very top of the tv screen) but then when I start to move around in the episodes everything gets shifted down and to the right.
Find all posts by this user
Add Thank You Quote this message in a reply
Yesterday, 08:18 AM
Post: #2093
RE: All-in-One Package SabishGT skin [Update: 28.05.2011]
Hi.

When i go to view movies by the year, also tv episodes show up. Is there a way to only restrict it to movies only?
Find all posts by this user
Add Thank You Quote this message in a reply
Post Reply 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
Photo [FLASH SKIN] pfpscope - A CinemaScope skin for Eversion pfp 23 7,285 05-20-2013 04:08 PM
Last Post: Cappy1
  [HTML SKIN] iSkin - YAMJ Skin for iOS, Android, or any device with a web-kit based browser gfb107 1,357 322,203 05-19-2013 08:13 PM
Last Post: gfb107
Video [HTML SKIN] Rutabaga_MOD_by_Hispanico [update 27.05.x11] hispanico 48 22,036 05-12-2013 01:51 PM
Last Post: Jascha
Star [TOOL] Dynamic YAMJ & Music JukeBox server - NMTServer 1.82 released [5 Feb. 2011] ithiel 2,258 848,635 05-05-2013 04:39 AM
Last Post: NeilN1
  [HTML SKIN] ÆON Movie Wall YAMJ *UPDATE* May 9, 2010 - Clean Up #4 ejp 8,798 2,220,741 05-01-2013 05:49 PM
Last Post: h3dman
  [FLASH SKIN] Legion's Overlays and Mods for evZap! (02/27 update) Legion455 294 44,342 04-22-2013 07:11 AM
Last Post: jluc2808
  [HTML SKIN] GTspecial Zappiti-look-a-like public beta (Update:24.06.2011) gt-eins 957 193,762 03-22-2013 08:29 PM
Last Post: jerichoy2j
Information [HTML SKIN] Guide for YAMJ skin makers Omertron 62 52,068 04-19-2012 08:57 AM
Last Post: Omertron
  [HTML SKIN] Alaska *UPDATE* May 9, 2010 - 3 Fixes, 1 Enhancement, and a Time Fix(?) ejp 352 130,013 02-15-2012 01:51 PM
Last Post: accident
Lightning [FLASH SKIN] Eversion teaser.. 200 series skin coming soon. accident 38 14,035 02-26-2011 09:09 AM
Last Post: accident

Forum Jump: