-
11-04-2008, 12:03 PM #1Livin the iPhone Life
- Join Date
- Sep 2008
- Location
- In a van down by the river
- Posts
- 4,831
- Thanks
- 551
- Thanked 515 Times in 427 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.
-
11-04-2008, 01:30 PM #2My iPhone is a Part of Me
- Join Date
- May 2008
- Location
- Scranton
- Posts
- 584
- Thanks
- 164
- Thanked 197 Times in 155 Posts
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
and here is a plst from the blackberry theme that made the time transparent:PHP Code:<html>
<head><title>newclock</title>
<base href="Private/"/>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<style>
body {
margin: 0;
padding: 0px 0 0 0;
height: 480px;
width: 320px;
}
</style>
<script type="text/javascript" src="configureMe.js"/>
<script type="text/javascript" src="Wallpaper.js"/>
</head>
<style>
SPAN#clock
{
font-family: Helvetica;
color: #ffffff;
font-size: 30px;
}
SPAN#ampm
{
font-family: Helvetica;
color: #ffffff;
font-size: 15px;
}
</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 == 0 ) ? 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 == 0 ) ? 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>
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
-
The Following User Says Thank You to Ice9812 For This Useful Post:
CaptainChaos (11-05-2008)
-
11-04-2008, 04:01 PM #3What's Jailbreak?
- 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
-
The Following User Says Thank You to DarthKnight For This Useful Post:
CaptainChaos (11-05-2008)
-
11-05-2008, 03:38 AM #4What'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.
-
The Following 2 Users Say Thank You to kevin.fr For This Useful Post:
CaptainChaos (11-05-2008), kevinxy (02-23-2009)
-
11-05-2008, 03:52 AM #5Livin the iPhone Life
- Join Date
- Sep 2008
- Location
- In a van down by the river
- Posts
- 4,831
- Thanks
- 551
- Thanked 515 Times in 427 Posts
Thank you very much! The transparent is exactly what I am looking for

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!
-
03-08-2009, 11:09 AM #6
so how can i restore back the time? i tried uninstalling MIM but it didn't restore on old state.
-
09-07-2009, 04:45 AM #7
-
07-02-2010, 06:00 AM #8
When i hit banner nothing happens, carrier works.
Strange... Anyone has an idea??
Cheers
siPhone 3GS / OS 3.1 / Black / 32gb / blackra1n'd



LinkBack URL
About LinkBacks
Reply With Quote

