The ModMyTM Family of Sites:
ModMyMotoModMyiModMyGphone




 
 
Register or Connect with Facebook

Discuss AppStore Apps | Browse / Search Cydia | MMi Cydia Stats




  Apple Forums & iPhone Forums, Mods, Hacks, News, Themes, Downloads, and more! | ModMyi.com > Design and Media For the iPhone / iPod Touch > Skinning / Themes Discussion
Reply
 
LinkBack Thread Tools Display Modes
  #1  
Old 11-04-2008, 01:03 PM
CaptainChaos's Avatar
Livin the iPhone Life
 
Join Date: Sep 2008
Device + Firmware: iPhone 3G[S] 3.0.1
Operating System: Window$ 7
Location: In a van down by ther river
Posts: 1,759
Thanks: 228
Thanked 127 Times in 119 Posts
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
Removing the clock in the status bar-clock.jpg  
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
  #2  
Old 11-04-2008, 02:30 PM
My iPhone is a Part of Me
 
Join Date: May 2008
Device + Firmware: Iphone 1st gen 16gig 3.0 redsnOw
Operating System: xp
Location: Scranton
Posts: 510
Thanks: 158
Thanked 184 Times in 144 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 08:01 PM..
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
The Following User Says Thank You to Ice9812 For This Useful Post:
CaptainChaos (11-05-2008)
  #3  
Old 11-04-2008, 05:01 PM
DarthKnight's Avatar
What's Jailbreak?
 
Join Date: Oct 2008
Device + Firmware: iPhone 3G 2.1 JB'd
Operating System: Vista 64
Location: Vancouver, Canada
Posts: 18
Thanks: 4
Thanked 4 Times in 4 Posts

Download Make it Mine from Cydia. You can change the Time and the Carrier
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
The Following User Says Thank You to DarthKnight For This Useful Post:
CaptainChaos (11-05-2008)
  #4  
Old 11-05-2008, 04:38 AM
What's Jailbreak?
 
Join Date: Sep 2008
Device + Firmware: Iphone V.1// FW2.1. Jailbroke!
Operating System: Windows Xp Pro
Location: France/Paris
Posts: 19
Thanks: 14
Thanked 12 Times in 7 Posts
Send a message via MSN to kevin.fr

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

Attached Thumbnails
Removing the clock in the status bar-img_0016.png  
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
The Following 2 Users Say Thank You to kevin.fr For This Useful Post:
CaptainChaos (11-05-2008), kevinxy (02-23-2009)
  #5  
Old 11-05-2008, 04:52 AM
CaptainChaos's Avatar
Livin the iPhone Life
 
Join Date: Sep 2008
Device + Firmware: iPhone 3G[S] 3.0.1
Operating System: Window$ 7
Location: In a van down by ther river
Posts: 1,759
Thanks: 228
Thanked 127 Times in 119 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!
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
  #6  
Old 03-08-2009, 12:09 PM
What's Jailbreak?
 
Join Date: Nov 2007
Posts: 10
Thanks: 1
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.
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
  #7  
Old 09-07-2009, 05:45 AM
Green Apple
 
Join Date: Apr 2008
Device + Firmware: 1.1.4
Operating System: Windows Xp
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 ...
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
Reply

  Apple Forums & iPhone Forums, Mods, Hacks, News, Themes, Downloads, and more! | ModMyi.com > Design and Media For the iPhone / iPod Touch > Skinning / Themes Discussion

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



Go to Top
ModMyI

All times are GMT -6. The time now is 07:47 PM. Powered by vBulletin® Version 3.8.4
If you need Dedicated Server Hosting, you should check out SingleHop. | Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.3.0 Copyright © 2007-09 by ModMy, LLC. All rights reserved.

iPhone News / iPhone Forums / Apple News / Apple Forums / RSS / Contact Us / / Privacy Statement / Top