• 1
  • 2
  • 3
  • 4(current)
  • 5
  • 6
  • 49
[FRODO release] Skin Widgets
#46
(2012-10-11, 19:50)Hitcher Wrote: I've checked the bookmark table and that only lists 13 movies whereas the recommended lists the max 20. Huh

EDIT: Doesn't this use the same start and finish cut-off points as resume?

Think that's an XBMC bug as i only have one movie started watching and it lists all. Will get some eyes on that
Read/follow the forum rules.
For troubleshooting and bug reporting, read this first
Interested in seeing some YouTube videos about Kodi? Go here and subscribe
Reply
#47
Thanks, at least my coding wasn't to blame.
Reply
#48
For recommended episodes I cannot get the episodes to play onclick.

this is how i have coded an item in home.xml.

PHP Code:
<item id="1">
     <
icon>$INFO[Window(Home).Property(RecommendedEpisode.1.TvshowThumb)]</icon>
     <
label>$INFO[Window(Home).Property(RecommendedEpisode.1.Rating)]</label>
     <
label2>$INFO[Window(Home).Property(RecommendedEpisode.1.EpisodeNo)]</label2>
     <
onclick>$INFO[Window(Home).Property(RecommendedEpisode.1.Path)]</onclick>
</
item
Reply
#49
(2012-10-11, 20:14)krish_2k4 Wrote: For recommended episodes I cannot get the episodes to play onclick.

this is how i have coded an item in home.xml.

PHP Code:
<item id="1">
     <
icon>$INFO[Window(Home).Property(RecommendedEpisode.1.TvshowThumb)]</icon>
     <
label>$INFO[Window(Home).Property(RecommendedEpisode.1.Rating)]</label>
     <
label2>$INFO[Window(Home).Property(RecommendedEpisode.1.EpisodeNo)]</label2>
     <
onclick>$INFO[Window(Home).Property(RecommendedEpisode.1.Path)]</onclick>
</
item

PHP Code:
<item id="1">
     <
icon>$INFO[Window(Home).Property(RecommendedEpisode.1.TvshowThumb)]</icon>
     <
label>$INFO[Window(Home).Property(RecommendedEpisode.1.Rating)]</label>
     <
label2>$INFO[Window(Home).Property(RecommendedEpisode.1.EpisodeNo)]</label2>
     <
onclick>$INFO[Window(Home).Property(RecommendedEpisode.1.File)]</onclick>
</
item

Path is the TV shows root path
Read/follow the forum rules.
For troubleshooting and bug reporting, read this first
Interested in seeing some YouTube videos about Kodi? Go here and subscribe
Reply
#50
worked thanks Martijn! the old watchlist script let me play from path which is what confused me and looks like a misread the wiki! my bad.
Reply
#51
(2012-10-11, 20:25)krish_2k4 Wrote: worked thanks Martijn! the old watchlist script let me play from path which is what confused me and looks like a misread the wiki! my bad.

For your comfort. You are not the only one that didn't change those Wink
OP clearly stated that label had somewhat changed Smile

(2012-10-11, 19:59)Martijn Wrote:
(2012-10-11, 19:50)Hitcher Wrote: I've checked the bookmark table and that only lists 13 movies whereas the recommended lists the max 20. Huh

EDIT: Doesn't this use the same start and finish cut-off points as resume?

Think that's an XBMC bug as i only have one movie started watching and it lists all. Will get some eyes on that

(2012-10-11, 20:09)Hitcher Wrote: Thanks, at least my coding wasn't to blame.

Correction. It was my fault. Somehow I set the filters wrong Sad

New version 0.0.3
in downloads
Read/follow the forum rules.
For troubleshooting and bug reporting, read this first
Interested in seeing some YouTube videos about Kodi? Go here and subscribe
Reply
#52
Perfect, thanks.
Reply
#53
so i'm the only one with the script failing on startup heres a snippit from the log

Reply
#54
found the problem it has a problem with rared archives. here is the if statement causing it the crash removing it allows it to run

# Fixes problems with rared movies and multipath
if path.startswith("rar://"):
path = [os.path.split(urllib.url2pathname(path.replace("rar://","")))[0]]
elif path.startswith("multipath://"):
temp_path = path.replace("multipath://","").split('%2f/')
path = []
for item in temp_path:
path.append(urllib.url2pathname(item))
Reply
#55
(2012-10-12, 18:06)Hack_kid Wrote: so i'm the only one with the script failing on startup heres a snippit from the log


thx

add this after the other imports
PHP Code:
import urllib 


Read/follow the forum rules.
For troubleshooting and bug reporting, read this first
Interested in seeing some YouTube videos about Kodi? Go here and subscribe
Reply
#56
BTW

I hate log snippets on the forum. so don't do that

Use pastebin
Read/follow the forum rules.
For troubleshooting and bug reporting, read this first
Interested in seeing some YouTube videos about Kodi? Go here and subscribe
Reply
#57
Does RandomAlbum.%d.Title work for anyone?
Image
Reply
#58
(2012-10-12, 23:52)`Black Wrote: Does RandomAlbum.%d.Title work for anyone?

doesn´t work here, too.
Donate: https://kodi.tv/contribute/donate (foundation), 146Gr48FqHM7TPB9q33HHv6uWpgQqdz1yk (BTC personal)
Estuary: Kodis new default skin - ExtendedInfo Script - KodiDevKit
Reply
#59
works for me

Code:
$INFO[Window.Property(RandomAlbum.1.Title)]
Do not PM or e-mail Team-Kodi members directly asking for support.
Always read the Forum rules, Kodi online-manual, FAQ, Help and Search the forum before posting.
Reply
#60
Seems that it stopped working with the nightly from Oct 10.
Image
Reply
  • 1
  • 2
  • 3
  • 4(current)
  • 5
  • 6
  • 49

Logout Mark Read Team Forum Stats Members Help
[FRODO release] Skin Widgets8