Watchlist script

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
ronie Offline
Team-XBMC Member
Posts: 8,262
Joined: Jan 2009
Reputation: 108
Post: #21
(2012-03-14 11:09)doogie_at Wrote:  thank you,
can that be changed somehow easily, i.e. in Includes_Home.xml or plainly no chance at all?

yup, you can add additional items to the list. search for this one and add other below

Code:
<item id="9">
    <label>$INFO[Window.Property(WatchList_Movie.3.Label)]</label>
    <label2>$INFO[Window.Property(WatchList_Movie.3.Year)]</label2>
    <thumb>$INFO[Window.Property(WatchList_Movie.3.Thumb)]</thumb>
    <property name="FanartImage">$INFO[Window.Property(WatchList_Movie.3.Fanart)]</property>
    <onclick>$INFO[Window.Property(WatchList_Movie.3.Path),PlayMedia(&quot;,&quot;)]</onclick>
    <visible>Skin.HasSetting(HomeWatchlistMovies)</visible>
</item>

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not PM or 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.
find quote
doogie_at Offline
Junior Member
Posts: 17
Joined: Mar 2012
Reputation: 0
Post: #22
perfekt, thanks!
Doogie
find quote
doogie_at Offline
Junior Member
Posts: 17
Joined: Mar 2012
Reputation: 0
Post: #23
sorry for my late reply.
I tried what you suggested and got 3 new items, but all of them are empty, no label, no thumb image showing...

do I have to tell the watchlist script that it has to generate 3 more items that can be used in the skin?

thanks
Doogie
find quote
Hitcher Online
Skilled Skinner
Posts: 9,937
Joined: Aug 2007
Reputation: 67
Location: Eastleigh, UK
Post: #24
Yes, change the current count from 3 to whatever you need.

[Image: sig_zps3af3b48e.jpg]
find quote
ronie Offline
Team-XBMC Member
Posts: 8,262
Joined: Jan 2009
Reputation: 108
Post: #25
(2012-03-24 18:08)doogie_at Wrote:  sorry for my late reply.
I tried what you suggested and got 3 new items, but all of them are empty, no label, no thumb image showing...

do I have to tell the watchlist script that it has to generate 3 more items that can be used in the skin?

thanks
Doogie

yup, check Startup.xml and change the limit value.

Code:
RunScript(script.watchlist,movies=true&amp;episodes=true&amp;albums=true&amp;limit=3)

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not PM or 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.
find quote
doogie_at Offline
Junior Member
Posts: 17
Joined: Mar 2012
Reputation: 0
Post: #26
nevermind, found it in "Startup.xml"...

edit: sorry, didn't see your post before I found it... thank you anyways!
looking good now Smile

Doogie
(This post was last modified: 2012-03-24 19:21 by doogie_at.)
find quote
nooz Offline
Junior Member
Posts: 17
Joined: Sep 2011
Reputation: 0
Post: #27
(2012-03-14 19:31)ronie Wrote:  
(2012-03-14 11:09)doogie_at Wrote:  thank you,
can that be changed somehow easily, i.e. in Includes_Home.xml or plainly no chance at all?

yup, you can add additional items to the list. search for this one and add other below

Code:
<item id="9">
    <label>$INFO[Window.Property(WatchList_Movie.3.Label)]</label>
    <label2>$INFO[Window.Property(WatchList_Movie.3.Year)]</label2>
    <thumb>$INFO[Window.Property(WatchList_Movie.3.Thumb)]</thumb>
    <property name="FanartImage">$INFO[Window.Property(WatchList_Movie.3.Fanart)]</property>
    <onclick>$INFO[Window.Property(WatchList_Movie.3.Path),PlayMedia(&quot;,&quot;)]</onclick>
    <visible>Skin.HasSetting(HomeWatchlistMovies)</visible>
</item>

Hi Ron, could you elaborate for the noobs among us, what exactly are we meant to do to increase the number of shows in the watchlist.

I know the Includes_Home.xml and Startup.xml both need to be edited but I'm not sure where I need to change?

Thanks for an amazing skin btw
find quote
ronie Offline
Team-XBMC Member
Posts: 8,262
Joined: Jan 2009
Reputation: 108
Post: #28
(2012-04-10 22:52)nooz Wrote:  
(2012-03-14 19:31)ronie Wrote:  
(2012-03-14 11:09)doogie_at Wrote:  thank you,
can that be changed somehow easily, i.e. in Includes_Home.xml or plainly no chance at all?

yup, you can add additional items to the list. search for this one and add other below

Code:
<item id="9">
    <label>$INFO[Window.Property(WatchList_Movie.3.Label)]</label>
    <label2>$INFO[Window.Property(WatchList_Movie.3.Year)]</label2>
    <thumb>$INFO[Window.Property(WatchList_Movie.3.Thumb)]</thumb>
    <property name="FanartImage">$INFO[Window.Property(WatchList_Movie.3.Fanart)]</property>
    <onclick>$INFO[Window.Property(WatchList_Movie.3.Path),PlayMedia(&quot;,&quot;)]</onclick>
    <visible>Skin.HasSetting(HomeWatchlistMovies)</visible>
</item>

Hi Ron, could you elaborate for the noobs among us, what exactly are we meant to do to increase the number of shows in the watchlist.

I know the Includes_Home.xml and Startup.xml both need to be edited but I'm not sure where I need to change?

Thanks for an amazing skin btw
my advice to noobs would be to wait for the next T! release, it'll have 10 items instead of 3.

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not PM or 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.
find quote
Post Reply