[MOD] 10 Recently Added Movies Centered

  Thread Rating:
  • 2 Votes - 3.5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
bigbully Offline
Member
Posts: 55
Joined: Jun 2011
Reputation: 2
Post: #11
(2012-04-03 19:15)Abe Froman Wrote:  I think it would look really clean with the size and positions of the backgrounds changed, and the movie title text removed.

TV looks great as it is.

Check this one out. http://www.datafilehost.com/download-b2e4e307.html

I disabled the movie titles, but instead of reducing the size of the background boxes I increased the size of the movie posters. This way the size is still the same as the TV Shows. I think it looks better this way when switching back and forth between Movies or Videos and TV Shows.

(2012-04-03 19:15)Abe Froman Wrote:  One more thing - how did you add "Home movies" and "Elana's Room" ? Need an item like that for Pseudotv program script.

This is a mod to the home.xml. "Home Videos" is a menu I added that points directly to the home vid files list and "Elena's Room" is a menu that points directly to the "Kids" genre list. I'll post details later.
find quote
wilson.joe Offline
Fan
Posts: 448
Joined: Nov 2010
Reputation: 6
Location: Salem, Or
Post: #12
Make Smartplaylists

In a world without walls and fences who needs windows and gates, open source, opens minds.open yours today.
find quote
Abe Froman Offline
Senior Member
Posts: 173
Joined: Apr 2010
Reputation: 7
Post: #13
I couldn't figure it out.
find quote
bigbully Offline
Member
Posts: 55
Joined: Jun 2011
Reputation: 2
Post: #14
(2012-04-12 18:29)Abe Froman Wrote:  I couldn't figure it out.

You need to add a new item under the first content section in the home.xml

search for the first <content> and you should see a number of items that are uniquely ID'd. Create your own item with a new unique ID that points to the script you want.

For example I have:
Code:
<content>
                    <item id="7">
                        <label>8</label>
                        <onclick>ActivateWindow(Weather)</onclick>
                        <icon>special://skin/backgrounds/north_america.jpg</icon>
                        <thumb>$INFO[Skin.String(Home_Custom_Back_Weather_Folder)]</thumb>
                        <visible>!Skin.HasSetting(HomeMenuNoWeatherButton) + !IsEmpty(Weather.Plugin)</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="14">
                        <label>Home Videos</label>
                        <onclick>ActivateWindow(10025,&quot;/Volumes/iTunes Movies/Videos/&quot;,return)</onclick>
                        <icon>special://skin/backgrounds/videos.jpg</icon>
                    </item>

You can see that I added item 14 and the onclick section points to the directory where I store my home videos. The order that you list the IDs is the order they will display from left to right. label is the name that will display, icon is the background wallpaper image that will display. You'll need to figure out what the link is for your script though. It will go between the semi-colons in the onclick section.
find quote
Abe Froman Offline
Senior Member
Posts: 173
Joined: Apr 2010
Reputation: 7
Post: #15
Got it thanks.

<item id="14">
<label>PseudoTV</label>
<onclick>RunScript(script.pseudotv)</onclick>
<icon>special://skin/backgrounds/pseudotv.jpg</icon>
</item>
(This post was last modified: 2012-04-14 17:12 by Abe Froman.)
find quote
bigbully Offline
Member
Posts: 55
Joined: Jun 2011
Reputation: 2
Post: #16
Glad to help.
find quote
michelm Offline
Junior Member
Posts: 3
Joined: Jan 2012
Reputation: 0
Post: #17
It looks great, is it possible to mark a movie if it is already watched?

Do you know if it is possible to show the movie plot instead of starting the movie when you click on a recently added movie?
find quote
bigbully Offline
Member
Posts: 55
Joined: Jun 2011
Reputation: 2
Post: #18
(2012-05-18 14:20)michelm Wrote:  It looks great, is it possible to mark a movie if it is already watched?
There may be a way to do this either with a highlight, background or color change, but not without in-depth redesign of existing layout with code that is beyond me.
Quote:Do you know if it is possible to show the movie plot instead of starting the movie when you click on a recently added movie?
I'm not sure about this one. Seems like it should be possible, but I wouldn't know where to look for the coding for that.
find quote
Post Reply