Millwood;345186 Wrote: 
> 
> (Why do I want this?
> 
> 1.  So I get the clock and signal strength on the screen.

If you just want the status bar to show in the screensaver you can make
a simple change in the file Ben mentioned ~450 lines down:

Code:
--------------------
    
  -- Screen Saver Display 
  --
  
  function _createUI(self)
        local window = Window("window")
  
        if windowStyle == 'ss' then
  -- CHANGE false TO true BELOW
                window:setShowFrameworkWidgets(true)
        end
--------------------


Keeping the progress bar from transitioning down in ss mode wasn't as
obvious, so I just let it keep going there and shrank the cover to keep
it from interfering w/ the progress bar. Around line 100:


Code:
--------------------
    if windowStyle == 'ss' then
                -- without drop shadow
  -- CHANGED 186 to 172         
  ARTWORK_SIZE = 172
                -- with drop shadow
                --ARTWORK_SIZE = 172
        else
                ARTWORK_SIZE = 154
        end
  
--------------------


-- 
Skunk

http://www.last.fm/user/TheSkunk/
------------------------------------------------------------------------
Skunk's Profile: http://forums.slimdevices.com/member.php?userid=2685
View this thread: http://forums.slimdevices.com/showthread.php?t=53214

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

Reply via email to