Chippy;651055 Wrote: 
> Guys -
> Minor issue, but I'd be grateful for any advice...
> 
> A while back (possibly a year ago) I used to have my SDT baseball
> scores set to "smooth scroll" (at 1 pixel increments). For whatever
> reason (possibly a firmware update that moved the scroll functionality
> to the firmware) it changed back to a more jerky scroll a while ago. 
> 
> Belatedly, I'm trying to get it back.
> 
> I've made the settings on the "Player/Display" page (1 pixel at 0.011
> second updates) which works fine for any song titles, etc - but doesn't
> appear to have an effect on the SDT scores. 
> 
> Any ideas?
> 
> cheers
> Chippy

Chippy,
I noticed the same thing a few releases ago of the squeezebox server
software.  I found it was limited to the ticker style of text scroll. 
Any plugin that uses the "ticker" style of text scrolling such as RSS
news feeds is jerky and can't be adjusted with the pixel rate settings
you mentioned above.

As a work around for SDT scores I changed "Text Scrolling" setting from
ticker to slide style on the SDT player setting page.  Then I found that
at least on my Boom Squeezebox players the slide wouldn't work quite
right.  I fixed that by changing a couple lines of code in the "sub
screensaverSuperDateTimelines" section of the plugin.pm file.

Around about line 6863 I changed from:

Code:
--------------------
    
  $hash = {  #Game center text
  'overlay' => [ $overlay{$client} . $status, undef ],
  'center'  => [ $displayLine1{$client}, $displayLine2{$client} ],
  };
--------------------

To:

Code:
--------------------
    
  $hash = {  #Game center text
  'overlay' => [ $overlay{$client} . $status, undef ],
  'center'  => [ $displayLine1{$client}, undef ],
  'line'    => [ undef, $displayLine2{$client} ],
  };
--------------------


Also around line 6877 I changed from:

Code:
--------------------
    
  else { #Sport scores/stocks in large text
  $hash = {
        'overlay' => [ undef, $overlay{$client} . $status ],
        $nowshowing{$client}{'justify'} => [ undef, $displayLine2{$client}],
  };
  }
--------------------

To:

Code:
--------------------
    
  else { #Sport scores/stocks in large text
  $hash = {
        'overlay' => [ undef, $overlay{$client} . $status ],
        'line'    => [ undef, $displayLine2{$client} ],
  };
  }
--------------------


I'm not sure whether these changes will work for any other players.  I
only have a Boom to test it on.  In fact you may be able to get by with
just changing the Text Scroll setting to slide.  The bug I had with the
slide setting may be limited to the Boom.

Let me know if it works for you.

Good luck,
Don

PS - Once you get the slide text scroll working you may also need to
increase the "Game Interval" value on the Advanced SDT setting page.


-- 
BoomX2
------------------------------------------------------------------------
BoomX2's Profile: http://forums.slimdevices.com/member.php?userid=33529
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

_______________________________________________
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to