home
products
contribute
download
documentation
forum
Home
Forums
New posts
Search forums
What's new
New posts
All posts
Latest activity
Members
Registered members
Current visitors
Donate
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Search titles only
By:
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
MediaPortal 1
MediaPortal 1 Plugins
Popular Plugins
Trakt
How to add a Trakt dashboard on BasicHome
Contact us
RSS
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="ltfearme" data-source="post: 1136427" data-attributes="member: 52219"><p>Hey catavolt,</p><p></p><p>I have uploaded an example for you of a dashboard on basichome (BasicHome.Trakt.xml is just an import to BasicHome.xml), it only displays trending shows and movies but you can also display activities and or statistics. The facade controls will only get populated based on your settings defined in Trakt.SkinSettings.xml e.g.</p><p></p><p>[code]</p><p> <activities></p><p> <!-- Control what GUI windows the dashboard should be displayed on --></p><p> <!-- Separate multiple window id's with pipe '|' separator --></p><p> <!-- e.g. <windows>35|87258</windows> for BasicHome.xml and Trakt.xml --></p><p> <windows>87258</windows></p><p> <!-- Facade Type e.g. Filmstrip, LargeIcons, SmallIcons, List --></p><p> <!-- set facade to None if not using a facade --></p><p> <facadetype>List</facadetype></p><p> <!-- Set the Max number of items to show in facade --></p><p> <!-- If you dont expect the user to scroll then set to the viewable amount --></p><p> <facademaxitems>45</facademaxitems></p><p> <!-- Number of properties to push to skin for Activity Stream --></p><p> <!-- Use this to set skin properties independent of the facade or selected item --></p><p> <!-- if not using properties, then set to 0 --></p><p> <propertiesmaxitems>0</propertiesmaxitems></p><p> </activities></p><p>[/code]</p><p></p><p>This says load the activities only on Window 87258, if you want to display on BasicHome you can change the Windows property to 87258|35 which means both windows. You can add as many windows as you want.</p><p></p><p>[code]</p><p> <trending></p><p> <facadetype>Filmstrip</facadetype></p><p> <facademaxitems>5</facademaxitems></p><p> <propertiesmaxitems>5</propertiesmaxitems></p><p> <shows></p><p> <windows>87258</windows></p><p> </shows></p><p> <movies></p><p> <windows>87258</windows></p><p> </movies></p><p> </trending></p><p> <trending></p><p> <facadetype>Filmstrip</facadetype></p><p> <facademaxitems>3</facademaxitems></p><p> <propertiesmaxitems>3</propertiesmaxitems></p><p> <shows></p><p> <windows>35</windows></p><p> </shows></p><p> <movies></p><p> <windows>35</windows></p><p> </movies></p><p> </trending></p><p> <!-- User Statistics e.g. No of Episodes collected/watched --></p><p> <statistics>false</statistics></p><p>[/code]</p><p></p><p>This example from Titans Trakt.SkinSettings.xml shows that we want to have Trending on 87258 and 35 (Basichome) but we want to load it a bit differently on BasicHome i.e. we want to show 5 items on window 87258 and 3 items on BasicHome. Also note that we define both movies and shows, we don't have to, we may only want to display movies e.g. you could show what movies are trending when entering any movie window.</p><p></p><p>If we want the exact same details loaded then we can just have one Trending section e.g.</p><p></p><p>[code]</p><p> <trending></p><p> <facadetype>Filmstrip</facadetype></p><p> <facademaxitems>5</facademaxitems></p><p> <propertiesmaxitems>5</propertiesmaxitems></p><p> <shows></p><p> <windows>87258|35</windows></p><p> </shows></p><p> <movies></p><p> <windows>87258|35</windows></p><p> </movies></p><p> </trending></p><p> <!-- User Statistics e.g. No of Episodes collected/watched --></p><p> <statistics>false</statistics></p><p>[/code]</p><p></p><p>[code]</p><p> <statistics>false</statistics></p><p>[/code]</p><p></p><p>Stats can also be displayed if you set to true, the following stats properties are available:</p><p></p><p>[code]</p><p>#Trakt.Statistics.Friends</p><p>#Trakt.Statistics.Followers</p><p>#Trakt.Statistics.Following</p><p>#Trakt.Statistics.Shows.Collection</p><p>#Trakt.Statistics.Shows.Watched</p><p>#Trakt.Statistics.Shows.Shouts</p><p>#Trakt.Statistics.Shows.Loved</p><p>#Trakt.Statistics.Shows.Hated</p><p>#Trakt.Statistics.Shows.Ratings</p><p>#Trakt.Statistics.Episodes.Collection</p><p>#Trakt.Statistics.Episodes.Loved</p><p>#Trakt.Statistics.Episodes.Hated</p><p>#Trakt.Statistics.Episodes.Ratings</p><p>#Trakt.Statistics.Episodes.Shouts</p><p>#Trakt.Statistics.Episodes.Plays</p><p>#Trakt.Statistics.Episodes.WatchedUnique</p><p>#Trakt.Statistics.Movies.Collection</p><p>#Trakt.Statistics.Movies.Ratings</p><p>#Trakt.Statistics.Movies.Loved</p><p>#Trakt.Statistics.Movies.Hated</p><p>#Trakt.Statistics.Movies.Shouts</p><p>#Trakt.Statistics.Movies.Plays</p><p>#Trakt.Statistics.Movies.WatchedUnique</p><p>#Trakt.Statistics.Ratings.Total</p><p>#Trakt.Statistics.Ratings.Distribution.1</p><p>#Trakt.Statistics.Ratings.Distribution.2</p><p>#Trakt.Statistics.Ratings.Distribution.3</p><p>#Trakt.Statistics.Ratings.Distribution.4</p><p>#Trakt.Statistics.Ratings.Distribution.5</p><p>#Trakt.Statistics.Ratings.Distribution.6</p><p>#Trakt.Statistics.Ratings.Distribution.7</p><p>#Trakt.Statistics.Ratings.Distribution.8</p><p>#Trakt.Statistics.Ratings.Distribution.9</p><p>#Trakt.Statistics.Ratings.Distribution.10</p><p>[/code]</p></blockquote><p></p>
[QUOTE="ltfearme, post: 1136427, member: 52219"] Hey catavolt, I have uploaded an example for you of a dashboard on basichome (BasicHome.Trakt.xml is just an import to BasicHome.xml), it only displays trending shows and movies but you can also display activities and or statistics. The facade controls will only get populated based on your settings defined in Trakt.SkinSettings.xml e.g. [code] <activities> <!-- Control what GUI windows the dashboard should be displayed on --> <!-- Separate multiple window id's with pipe '|' separator --> <!-- e.g. <windows>35|87258</windows> for BasicHome.xml and Trakt.xml --> <windows>87258</windows> <!-- Facade Type e.g. Filmstrip, LargeIcons, SmallIcons, List --> <!-- set facade to None if not using a facade --> <facadetype>List</facadetype> <!-- Set the Max number of items to show in facade --> <!-- If you dont expect the user to scroll then set to the viewable amount --> <facademaxitems>45</facademaxitems> <!-- Number of properties to push to skin for Activity Stream --> <!-- Use this to set skin properties independent of the facade or selected item --> <!-- if not using properties, then set to 0 --> <propertiesmaxitems>0</propertiesmaxitems> </activities> [/code] This says load the activities only on Window 87258, if you want to display on BasicHome you can change the Windows property to 87258|35 which means both windows. You can add as many windows as you want. [code] <trending> <facadetype>Filmstrip</facadetype> <facademaxitems>5</facademaxitems> <propertiesmaxitems>5</propertiesmaxitems> <shows> <windows>87258</windows> </shows> <movies> <windows>87258</windows> </movies> </trending> <trending> <facadetype>Filmstrip</facadetype> <facademaxitems>3</facademaxitems> <propertiesmaxitems>3</propertiesmaxitems> <shows> <windows>35</windows> </shows> <movies> <windows>35</windows> </movies> </trending> <!-- User Statistics e.g. No of Episodes collected/watched --> <statistics>false</statistics> [/code] This example from Titans Trakt.SkinSettings.xml shows that we want to have Trending on 87258 and 35 (Basichome) but we want to load it a bit differently on BasicHome i.e. we want to show 5 items on window 87258 and 3 items on BasicHome. Also note that we define both movies and shows, we don't have to, we may only want to display movies e.g. you could show what movies are trending when entering any movie window. If we want the exact same details loaded then we can just have one Trending section e.g. [code] <trending> <facadetype>Filmstrip</facadetype> <facademaxitems>5</facademaxitems> <propertiesmaxitems>5</propertiesmaxitems> <shows> <windows>87258|35</windows> </shows> <movies> <windows>87258|35</windows> </movies> </trending> <!-- User Statistics e.g. No of Episodes collected/watched --> <statistics>false</statistics> [/code] [code] <statistics>false</statistics> [/code] Stats can also be displayed if you set to true, the following stats properties are available: [code] #Trakt.Statistics.Friends #Trakt.Statistics.Followers #Trakt.Statistics.Following #Trakt.Statistics.Shows.Collection #Trakt.Statistics.Shows.Watched #Trakt.Statistics.Shows.Shouts #Trakt.Statistics.Shows.Loved #Trakt.Statistics.Shows.Hated #Trakt.Statistics.Shows.Ratings #Trakt.Statistics.Episodes.Collection #Trakt.Statistics.Episodes.Loved #Trakt.Statistics.Episodes.Hated #Trakt.Statistics.Episodes.Ratings #Trakt.Statistics.Episodes.Shouts #Trakt.Statistics.Episodes.Plays #Trakt.Statistics.Episodes.WatchedUnique #Trakt.Statistics.Movies.Collection #Trakt.Statistics.Movies.Ratings #Trakt.Statistics.Movies.Loved #Trakt.Statistics.Movies.Hated #Trakt.Statistics.Movies.Shouts #Trakt.Statistics.Movies.Plays #Trakt.Statistics.Movies.WatchedUnique #Trakt.Statistics.Ratings.Total #Trakt.Statistics.Ratings.Distribution.1 #Trakt.Statistics.Ratings.Distribution.2 #Trakt.Statistics.Ratings.Distribution.3 #Trakt.Statistics.Ratings.Distribution.4 #Trakt.Statistics.Ratings.Distribution.5 #Trakt.Statistics.Ratings.Distribution.6 #Trakt.Statistics.Ratings.Distribution.7 #Trakt.Statistics.Ratings.Distribution.8 #Trakt.Statistics.Ratings.Distribution.9 #Trakt.Statistics.Ratings.Distribution.10 [/code] [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
MediaPortal 1
MediaPortal 1 Plugins
Popular Plugins
Trakt
How to add a Trakt dashboard on BasicHome
Contact us
RSS
Top
Bottom