I've found that the Squeezeplay now playing screen in the Desktop skin
puts the elapsed time over the top of the stream details, as there is no
progress bar when playing a stream.

I'm afraid I'm not proficient in LUA, but a little hacking has led me
to a fix in: share/jive/applets/FullscreenSkin/FullscreenSkinApplet.lua

Near the bottom find the lines: 

Code:
--------------------
    
  s.ssprogressNB.padding = { 0, 0, 0, 25 }
  s.ssprogressNB.elapsed.padding = { 0, 0, 0, 25 }
  
--------------------

And change the last value (25) to 65. 

Relaunch squeezeplay and all is well.

Also, for anyone else like me using the destop UI on a media PC
(MythTV) with no mouse, you can remove the Rew,Pause,Fwd buttons by
commenting the section correct section, thus:

Code:
--------------------
    
  --[[
  s.ssnpcontrols = {}
  s.ssnpcontrols.order = { 'rew', 'play', 'fwd' }
  s.ssnpcontrols.position = LAYOUT_NONE
  -- FIXME: box is too big
  
  local topPadding = screenHeight/2
  local rightPadding = screenWidth - screenWidth/4
  s.ssnpcontrols.x = rightPadding
  s.ssnpcontrols.y = topPadding
  s.ssnpcontrols.bgImg = softButtonBackground
  
  s.ssnpcontrols.rew = {}
  s.ssnpcontrols.rew.align = 'center'
  s.ssnpcontrols.rew.padding = 10
  s.ssnpcontrols.rew.img = _loadImage(self, 
"Screen_Formats/Player_Controls/Cyan/icon_toolbar_rew_on.png")
  
  s.ssnpcontrols.play = {}
  s.ssnpcontrols.play.align = 'center'
  s.ssnpcontrols.play.padding = 10
  s.ssnpcontrols.play.img = _loadImage(self, 
"Screen_Formats/Player_Controls/Cyan/icon_toolbar_play_on.png")
  
  s.ssnpcontrols.pause = {}
  s.ssnpcontrols.pause.align = 'center'
  s.ssnpcontrols.pause.padding = 10
  s.ssnpcontrols.pause.img = _loadImage(self, 
"Screen_Formats/Player_Controls/Cyan/icon_toolbar_pause_on.png")
  
  
  s.ssnpcontrols.fwd = {}
  s.ssnpcontrols.fwd.align = 'center'
  s.ssnpcontrols.fwd.padding = 10
  s.ssnpcontrols.fwd.img = _loadImage(self, 
"Screen_Formats/Player_Controls/Cyan/icon_toolbar_ffwd_on.png")
  
  s.browsenpcontrols = _uses(s.ssnpcontrols)
  s.largenpcontrols = _uses(s.ssnpcontrols)
  ]]
  
--------------------


Hope this helps someone.

Graham


-- 
f948lan
------------------------------------------------------------------------
f948lan's Profile: http://forums.slimdevices.com/member.php?userid=3961
View this thread: http://forums.slimdevices.com/showthread.php?t=65379

_______________________________________________
jive mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/jive

Reply via email to