ListItem.IsResumable problem. ???

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
igotdvds Offline
Skilled Skinner
Posts: 1,616
Joined: Jul 2009
Reputation: 11
Post: #1
Having an issue with ListItem.IsResumable.

Here is the code and the pictures follow. One show that is resumable (episode 4) shows the icon another that is resumable (episode 6) does not.

Code:
Code:
                        <control type="image">
                            <posx>0</posx>
                            <posy>17</posy>
                            <width>40</width>
                            <height>40</height>
                            <align>left</align>
                            <texture>simplicity/banners/$INFO[ListItem.Overlay]</texture>
                            <visible>!ListItem.IsResumable</visible>
                        </control>
                        <control type="image">
                            <posx>0</posx>
                            <posy>17</posy>
                            <width>40</width>
                            <height>40</height>
                            <align>left</align>
                            <texture>simplicity/resume/$INFO[ListItem.Overlay]</texture>
                            <visible>ListItem.IsResumable</visible>
                        </control>

[Image: RE6G3.png]
-
[Image: Qasrv.png]
find quote
pecinko Offline
Donor
Posts: 2,995
Joined: Dec 2008
Reputation: 26
Location: Prague / Belgrade
Post: #2
It gets refreshed on skin reload/window reopen?

My skins:

Quartz
Amber
find quote
igotdvds Offline
Skilled Skinner
Posts: 1,616
Joined: Jul 2009
Reputation: 11
Post: #3
pecinko Wrote:It gets refreshed on skin reload/window reopen?

Nope, never changes.
find quote
Jezz_X Online
Team-XBMC Skinner
Posts: 5,263
Joined: Jun 2006
Reputation: 55
Location: Earth
Post: #4
There is an issue with it updating that pieh was going to look at basically right now it only updates when the list cache thinks the items need updating which is few and far between if you exit a folder and wait a little then re-enter it, it can cause the cache to update.

The solution was he was going to change how and where it got updated and was looking at making it update on video stop (seems logical) but I don't think he has actually done that yet

Skins I have done....
[Image: skinsq.png]
And others in the past...

Want to know what I'm working on currently? Check me out on Google+
find quote
pieh Offline
Team-XBMC Member
Posts: 655
Joined: Aug 2010
Reputation: 13
Location: Poland
Post: #5
It was played earlier and it wasn't showing it from start? or did enter window, played item and it didn't update? as Jezz_X said, I'm aware of update problem, but didn't have much time to fix it - maybe on weekend (finally!) I will get it done.

Always read the XBMC online-manual, FAQ and search the forums before posting.
Do NOT e-mail Team-XBMC members asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting, make sure you read this first

My previous forum/trac nickname: grajen3
find quote
igotdvds Offline
Skilled Skinner
Posts: 1,616
Joined: Jul 2009
Reputation: 11
Post: #6
It was watched, I started it again, it doesnt show resumable.

Also,

Unwatched show, started watching it, doesnt show resumable.

There are only two shows in my library that show resumable. Not sure how they got to be that way.
find quote
Big_Noid Offline
Skilled Skinner
Posts: 2,626
Joined: Jul 2010
Reputation: 68
Location: Below sea level
Post: #7
atm I use this to determine if an item is resumable:
Code:
<visible>!SubString(ListItem.PercentPlayed,0,left)</visible>
find quote
igotdvds Offline
Skilled Skinner
Posts: 1,616
Joined: Jul 2009
Reputation: 11
Post: #8
Big_Noid Wrote:atm I use this to determine if an item is resumable:
Code:
<visible>!SubString(ListItem.PercentPlayed,0,left)</visible>

Same issue with this code. Confused
find quote
Hitcher Offline
Skilled Skinner
Posts: 9,915
Joined: Aug 2007
Reputation: 67
Location: Eastleigh, UK
Post: #9
What does it show if you display the $INFO[ListItem.PercentPlayed] label?

[Image: sig_zps3af3b48e.jpg]
find quote
pieh Offline
Team-XBMC Member
Posts: 655
Joined: Aug 2010
Reputation: 13
Location: Poland
Post: #10
I just pushed some changes that might help - please try next nightly and let me know if it's working correctly. Thanks.

Always read the XBMC online-manual, FAQ and search the forums before posting.
Do NOT e-mail Team-XBMC members asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting, make sure you read this first

My previous forum/trac nickname: grajen3
find quote
Post Reply