The ModMyTM Family of Sites:
ModMyMotoModMyiModMyGphone




 
 
Register or Connect with Facebook

2.2 Unlock / Jailbreak OS X | 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 (permalink)  
Old 11-04-2008, 12:03 PM
CaptainChaos's Avatar
Livin the iPhone Life
 
Join Date: Sep 2008
Device + Firmware: iPhone 3G 3.0
Operating System: Window$ 7
Location: In a van down by ther river
Posts: 1,238
Thanks: 203
Thanked 93 Times in 85 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-clock-status-bar-clock.jpg  
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
  #2 (permalink)  
Old 11-04-2008, 01:30 PM
iPhoneaholic
 
Join Date: May 2008
Device + Firmware: Iphone 1st gen 8gig 3.0 redsnOw
Operating System: xp
Location: Scranton
Posts: 478
Thanks: 142
Thanked 174 Times in 138 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..
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 (permalink)  
Old 11-04-2008, 04: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 (permalink)  
Old 11-05-2008, 03: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-clock-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 (permalink)  
Old 11-05-2008, 03:52 AM
CaptainChaos's Avatar
Livin the iPhone Life
 
Join Date: Sep 2008
Device + Firmware: iPhone 3G 3.0
Operating System: Window$ 7
Location: In a van down by ther river
Posts: 1,238
Thanks: 203
Thanked 93 Times in 85 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 (permalink)  
Old 03-08-2009, 11:09 AM
What's Jailbreak?
 
Join Date: Nov 2007
Posts: 10
Thanks: 0
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
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

Forum Jump


Go to Top
ModMyI

All times are GMT -6. The time now is 04:07 PM. Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0 | Dedicated Server Hosting by SingleHop | Copyright © 2007-09 by ModMy, LLC. All rights reserved.

RSS / Contact Us / / ModMyi Home / Archive / Privacy Statement / Top


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407