+ Reply
Results 1 to 8 of 8
  1. #1
    Livin the iPhone Life CaptainChaos's Avatar
    Join Date
    Sep 2008
    Location
    In a van down by the river
    Posts
    4,831
    Thanks
    551
    Thanked 515 Times in 427 Posts

    Default Removing the clock in the status bar

    I am working on a theme that displays the time on the springboard so I would like to remove the time that is displayed on the upper status bar. Is there a plist or something I can edit to make invisible or set it to false maybe?

    Also, is there a way to rotate the icons 90 degrees? I am trying to create a landscape theme for my springboard, but the labels don't seem to want to change..ie the names displayed under the apps. I know you can make them invisible, but I would prefer them to show.
    Attached Thumbnails Attached Thumbnails Removing the clock in the status bar-clock.jpg  

  2. #2
    My iPhone is a Part of Me
    Join Date
    May 2008
    Location
    Scranton
    Posts
    584
    Thanks
    164
    Thanked 197 Times in 155 Posts

    Quote Originally Posted by CaptainChaos View Post
    I am working on a theme that displays the time on the springboard so I would like to remove the time that is displayed on the upper status bar. Is there a plist or something I can edit to make invisible or set it to false maybe?

    Also, is there a way to rotate the icons 90 degrees? I am trying to create a landscape theme for my springboard, but the labels don't seem to want to change..ie the names displayed under the apps. I know you can make them invisible, but I would prefer them to show.
    there is a theme for witherboad in Cydia called Extended Preferences and it has the option to change the clock to whatever you want so if you turn fake time on and leave it blank it makes the clock transparent....and it all is done in the settings app ...i like it its real simple....

    i have this widget here that just displays the clock...it was the clock/date widget...all i did was take out the date part of it

    PHP Code:
    <html>
    <
    head><title>newclock</title>
        <
    base href="Private/"/>
        <
    meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>

        <
    style>
            
    body {
                
    margin0;
                
    padding0px 0 0 0;
                
    height480px;
                
    width320px;
            }
          
           
        </
    style>


        <
    script type="text/javascript" src="configureMe.js"/>
        <
    script type="text/javascript" src="Wallpaper.js"/>
    </
    head>
    <
    style>

        
    SPAN#clock
    {
            
    font-familyHelvetica;
            
    color#ffffff;
            
    font-size30px;
    }

        
    SPAN#ampm
    {
            
    font-familyHelvetica;
            
    color#ffffff;
            
    font-size15px;
    }


    </
    style>

    <
    script type="text/javascript">
    function 
    init ( )
    {
      
    timeDisplay document.createTextNode "" );
      
    document.getElementById("clock").appendChild timeDisplay );
    }

    function 
    updateClock ( )
    {
      var 
    currentTime = new Date ( );

      var 
    currentHours currentTime.getHours ( );
      var 
    currentMinutes currentTime.getMinutes ( );
      var 
    currentSeconds currentTime.getSeconds ( );

      
    // Pad the minutes and seconds with leading zeros, if required
      
    currentMinutes = ( currentMinutes 10 "0" "" ) + currentMinutes;
      
    currentSeconds = ( currentSeconds 10 "0" "" ) + currentSeconds;

      
    // Choose either "AM" or "PM" as appropriate
      
    var timeOfDay = ( currentHours 12 ) ? "AM" "PM";

      
    // Convert the hours component to 12-hour format if needed
      
    currentHours = ( currentHours 12 ) ? currentHours 12 currentHours;

      
    // Convert an hours component of "0" to "12"
      
    currentHours = ( currentHours == ) ? 12 currentHours;

      
    // Compose the string for display
      
    var currentTimeString currentHours ":" currentMinutes;

      
    // Update the time display
      
    document.getElementById("clock").firstChild.nodeValue currentTimeString;
    }

    function 
    init2 ( )
    {
      
    timeDisplay document.createTextNode "" );
      
    document.getElementById("ampm").appendChild timeDisplay );
    }

    function 
    amPm ( )
    {
      var 
    currentTime = new Date ( );

      var 
    currentHours currentTime.getHours ( );

      
    // Choose either "AM" or "PM" as appropriate
      
    var timeOfDay = ( currentHours 12 ) ? "AM" "PM";

      
    // Convert the hours component to 12-hour format if needed
      
    currentHours = ( currentHours 12 ) ? currentHours 12 currentHours;

      
    // Convert an hours component of "0" to "12"
      
    currentHours = ( currentHours == ) ? 12 currentHours;

      
    // Compose the string for display
      
    var currentTimeString timeOfDay;

      
    // Update the time display
      
    document.getElementById("ampm").firstChild.nodeValue currentTimeString;
    }

    function 
    init3 ( )
    {
      
    timeDisplay document.createTextNode "" );
      
    document.getElementById("calendar").appendChild timeDisplay );
    }



        
    </script>

    </head>




    <table style="position: absolute; top: 30px; left: 0px; width: 320px; height: 461px;" cellspacing="0" cellpadding="0" align="center">
    <tr align="center" valign="top"  border="0" cellpadding="0">
        <td height="10" valign="top">
        <span id="clock">
            <script language="JavaScript">updateClock(); setInterval('updateClock()', 1000 )</script></span><span id="ampm">
            <script language="JavaScript">amPm(); setInterval('amPm()', 1000 )</script>
        </span>
        </td>
    </tr>
    </tr>
    </table>

    <body onload="onLoad()">


    </body>
    </html> 
    and here is a plst from the blackberry theme that made the time transparent:
    hope this helps:

    PHP Code:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
        <key>NavigationBarStyle</key>
        <string>1</string>
        <key>UndockedIconLabelStyle</key>
        <string>/*font-family: monospace;*/ font-size: 13px; color: 0000</string>
        <key>DockedIconLabelStyle</key>
        <string>/*font-family: monospace;*/ font-size: 13px; color: transparent</string>
        <key>TimeStyle</key>
        <string>/*font-family: monospace;*/ font-size: 16px; color: transparent</string>
    </dict>
    </plist>
    Last edited by Ice9812; 11-04-2008 at 07:01 PM.
    If I Helped You Hit The Thanks Button

  3. The Following User Says Thank You to Ice9812 For This Useful Post:

    CaptainChaos (11-05-2008)

  4. #3
    What's Jailbreak? DarthKnight's Avatar
    Join Date
    Oct 2008
    Location
    Vancouver, Canada
    Posts
    22
    Thanks
    4
    Thanked 8 Times in 7 Posts

    Download Make it Mine from Cydia. You can change the Time and the Carrier

  5. The Following User Says Thank You to DarthKnight For This Useful Post:

    CaptainChaos (11-05-2008)

  6. #4
    What's Jailbreak?
    Join Date
    Sep 2008
    Location
    France/Paris
    Posts
    19
    Thanks
    14
    Thanked 13 Times in 7 Posts

    yeah with MAKE IT MINE, put a space and then hit BANNER.

    Attached Thumbnails Attached Thumbnails Removing the clock in the status bar-img_0016.png  

  7. The Following 2 Users Say Thank You to kevin.fr For This Useful Post:

    CaptainChaos (11-05-2008), kevinxy (02-23-2009)

  8. #5
    Livin the iPhone Life CaptainChaos's Avatar
    Join Date
    Sep 2008
    Location
    In a van down by the river
    Posts
    4,831
    Thanks
    551
    Thanked 515 Times in 427 Posts

    Quote Originally Posted by Ice9812 View Post
    there is a theme for witherboad in Cydia called Extended Preferences and it has the option to change the clock to whatever you want so if you turn fake time on and leave it blank it makes the clock transparent....and it all is done in the settings app ...i like it its real simple....

    i have this widget here that just displays the clock...it was the clock/date widget...all i did was take out the date part of it

    PHP Code:
    <html>
    <
    head><title>newclock</title>
        <
    base href="Private/"/>
        <
    meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>

        <
    style>
            
    body {
                
    margin0;
                
    padding0px 0 0 0;
                
    height480px;
                
    width320px;
            }
          
           
        </
    style>


        <
    script type="text/javascript" src="configureMe.js"/>
        <
    script type="text/javascript" src="Wallpaper.js"/>
    </
    head>
    <
    style>

        
    SPAN#clock
    {
            
    font-familyHelvetica;
            
    color#ffffff;
            
    font-size30px;
    }

        
    SPAN#ampm
    {
            
    font-familyHelvetica;
            
    color#ffffff;
            
    font-size15px;
    }


    </
    style>

    <
    script type="text/javascript">
    function 
    init ( )
    {
      
    timeDisplay document.createTextNode "" );
      
    document.getElementById("clock").appendChild timeDisplay );
    }

    function 
    updateClock ( )
    {
      var 
    currentTime = new Date ( );

      var 
    currentHours currentTime.getHours ( );
      var 
    currentMinutes currentTime.getMinutes ( );
      var 
    currentSeconds currentTime.getSeconds ( );

      
    // Pad the minutes and seconds with leading zeros, if required
      
    currentMinutes = ( currentMinutes 10 "0" "" ) + currentMinutes;
      
    currentSeconds = ( currentSeconds 10 "0" "" ) + currentSeconds;

      
    // Choose either "AM" or "PM" as appropriate
      
    var timeOfDay = ( currentHours 12 ) ? "AM" "PM";

      
    // Convert the hours component to 12-hour format if needed
      
    currentHours = ( currentHours 12 ) ? currentHours 12 currentHours;

      
    // Convert an hours component of "0" to "12"
      
    currentHours = ( currentHours == ) ? 12 currentHours;

      
    // Compose the string for display
      
    var currentTimeString currentHours ":" currentMinutes;

      
    // Update the time display
      
    document.getElementById("clock").firstChild.nodeValue currentTimeString;
    }

    function 
    init2 ( )
    {
      
    timeDisplay document.createTextNode "" );
      
    document.getElementById("ampm").appendChild timeDisplay );
    }

    function 
    amPm ( )
    {
      var 
    currentTime = new Date ( );

      var 
    currentHours currentTime.getHours ( );

      
    // Choose either "AM" or "PM" as appropriate
      
    var timeOfDay = ( currentHours 12 ) ? "AM" "PM";

      
    // Convert the hours component to 12-hour format if needed
      
    currentHours = ( currentHours 12 ) ? currentHours 12 currentHours;

      
    // Convert an hours component of "0" to "12"
      
    currentHours = ( currentHours == ) ? 12 currentHours;

      
    // Compose the string for display
      
    var currentTimeString timeOfDay;

      
    // Update the time display
      
    document.getElementById("ampm").firstChild.nodeValue currentTimeString;
    }

    function 
    init3 ( )
    {
      
    timeDisplay document.createTextNode "" );
      
    document.getElementById("calendar").appendChild timeDisplay );
    }



        
    </script>

    </head>




    <table style="position: absolute; top: 30px; left: 0px; width: 320px; height: 461px;" cellspacing="0" cellpadding="0" align="center">
    <tr align="center" valign="top"  border="0" cellpadding="0">
        <td height="10" valign="top">
        <span id="clock">
            <script language="JavaScript">updateClock(); setInterval('updateClock()', 1000 )</script></span><span id="ampm">
            <script language="JavaScript">amPm(); setInterval('amPm()', 1000 )</script>
        </span>
        </td>
    </tr>
    </tr>
    </table>

    <body onload="onLoad()">


    </body>
    </html> 
    and here is a plst from the blackberry theme that made the time transparent:
    hope this helps:

    PHP Code:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
        <key>NavigationBarStyle</key>
        <string>1</string>
        <key>UndockedIconLabelStyle</key>
        <string>/*font-family: monospace;*/ font-size: 13px; color: 0000</string>
        <key>DockedIconLabelStyle</key>
        <string>/*font-family: monospace;*/ font-size: 13px; color: transparent</string>
        <key>TimeStyle</key>
        <string>/*font-family: monospace;*/ font-size: 16px; color: transparent</string>
    </dict>
    </plist>
    Thank you very much! The transparent is exactly what I am looking for

    Quote Originally Posted by DarthKnight View Post
    Download Make it Mine from Cydia. You can change the Time and the Carrier
    Quote Originally Posted by kevin.fr View Post
    yeah with MAKE IT MINE, put a space and then hit BANNER.

    I have been using MIM for some time now and have always wondered what the Banner option was for :P This makes it really simple if people that use the theme now this already. Thank you!

  9. #6
    Green Apple
    Join Date
    Nov 2007
    Posts
    34
    Thanks
    5
    Thanked 0 Times in 0 Posts

    so how can i restore back the time? i tried uninstalling MIM but it didn't restore on old state.

  10. #7
    Green Apple
    Join Date
    Apr 2008
    Posts
    59
    Thanks
    11
    Thanked 1 Time in 1 Post
    Quote Originally Posted by PARUSA View Post
    so how can i restore back the time? i tried uninstalling MIM but it didn't restore on old state.
    u must restore it from within MAkeitMine before uninstalling it ...

  11. #8
    Green Apple
    Join Date
    Mar 2008
    Posts
    66
    Thanks
    0
    Thanked 2 Times in 2 Posts

    When i hit banner nothing happens, carrier works.

    Strange... Anyone has an idea??

    Cheers

    s
    iPhone 3GS / OS 3.1 / Black / 32gb / blackra1n'd

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts