Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
ok i have another issue that looks a bit more complex.


when in airplane mode or otherwise not connected to the internet i get this glitch:


is there any way of getting rid of that square?
 

Attachments

  • IMG_0265.PNG
    IMG_0265.PNG
    984.4 KB · Views: 140
that fixed it!


thanks!! :)

Thanks Schnedi :)

That's exactly what I was going to suggest.

----------

ok i have another issue that looks a bit more complex.


when in airplane mode or otherwise not connected to the internet i get this glitch:


is there any way of getting rid of that square?

I'm pretty sure I know what the issue is. Once I get home this after noon I'll fix it and upload it.
 
Love it! Is there a way to make my lockscreen just as it is here even if I am playing music. I don't care if I lose my music controls and track/album stuff.

Thanks for creating this beauty!
 

Attachments

  • IMG_8778.png
    IMG_8778.png
    1.2 MB · Views: 178
I've got the them installed; thanks for the help.

I'm now seeing the standard time/date and the HTC One theme on my lockscreen. How do I remove the original time/date from the lockscreen?
 
You will need to change the code in this section:

<!-- Defines either "AM" or "PM" as appropriate -->
var timeOfDay = ( currentHours < 12 ) ? "AM" : "PM";

<!-- Convert hours component of "12" to "24" -->
currentHours = ( currentHours > 12 ) ? currentHours - 12 : currentHours;

<!-- Convert hours component from "0" to "12 at Midnight-->
currentHours = ( currentHours == 0 ) ? 12 : currentHours;

<!-- Compose the string for display-->
currentHours = ( currentHours < 10 ? "0" : "" ) + currentHours;
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 ( );

<!-- Defines either "AM" or "PM" as appropriate -->
var timeOfDay = ( currentHours < 12 ) ? "AM" : "PM";

<!-- Convert hours component of "12" to "24" -->
//currentHours = ( currentHours > 12 ) ? currentHours - 12 : currentHours;

<!-- Convert hours component from "0" to "12 at Midnight-->
//currentHours = ( currentHours == 0 ) ? 12 : currentHours;

<!-- Compose the string for display-->
var currentTimeString = timeOfDay;

<!-- Update the string for display of AM/PM-->
document.getElementById("ampm").firstChild.nodeValue = currentTimeString;
}


I'd experiment but I'm on my phone right now.
 
Would you guys like it if I release two versions, one with 12 hour time + Fahrenheit temp, and one 24 hours and Celsius temp? Trying to get an idea before I get off work in a couple of hours.

I'm going to submit this to modmyi tonight so it will be easier to install for those that don't know how to ssh into their phones.
 
Would you guys like it if I release two versions, one with 12 hour time + Fahrenheit temp, and one 24 hours and Celsius temp? Trying to get an idea before I get off work in a couple of hours.

I'm going to submit this to modmyi tonight so it will be easier to install for those that don't know how to ssh into their phones.

Is there a way to fix notifications? When I receive 1 it goes in the middle of the screen but when I receive more then 2, it goes to the top of the screen and overlaps the time.
Thank you! It looks great and will be using this permanently .
 
Would you guys like it if I release two versions, one with 12 hour time + Fahrenheit temp, and one 24 hours and Celsius temp? Trying to get an idea before I get off work in a couple of hours.

I'm going to submit this to modmyi tonight so it will be easier to install for those that don't know how to ssh into their phones.

yes please.


and if you could include a fix for the square it would be great too! :)


thanks a lot missjenna.

----------

Is there a way to fix notifications? When I receive 1 it goes in the middle of the screen but when I receive more then 2, it goes to the top of the screen and overlaps the time.
Thank you! It looks great and will be using this permanently .

this will happen with any html theme you use.


notifications are programmed to sit just below the standard/iphone clock - which acts as a barrier for new ones coming in as well. since you probably got rid of it, they too ignore it and shift up.

if you want to fix this you'll need another tweak that handles notifications specifically, such as lockinfo 5 or intelliscreenx.

there is a current known bug in lockinfo 5 however (apparently fixed in the next update which is in beta) that on occasion the notifications do not respect the location you have assigned for it to appear, however. i use it, and, for the most part, works well.
 
yes please.


and if you could include a fix for the square it would be great too! :)


thanks a lot missjenna.

----------



this will happen with any html theme you use.


notifications are programmed to sit just below the standard/iphone clock - which acts as a barrier for new ones coming in as well. since you probably got rid of it, they too ignore it and shift up.

if you want to fix this you'll need another tweak that handles notifications specifically, such as lockinfo 5 or intelliscreenx.

there is a current known bug in lockinfo 5 however (apparently fixed in the next update which is in beta) that on occasion the notifications do not respect the location you have assigned for it to appear, however. i use it, and, for the most part, works well.

Would it be easier to add the code into this tweak? so that we wouldn't need to have 2 tweeks. Im sure everyone that wants to use this will want to have it all in one instead of "finding" a solution on how to make it look good.
 
Would it be easier to add the code into this tweak? so that we wouldn't need to have 2 tweeks. Im sure everyone that wants to use this will want to have it all in one instead of "finding" a solution on how to make it look good.

if it would be easy every single theme out there would have done it. we are talking apple and oranges here.


an html theme is just that - a web page on your lockscreen with widgets. for it to look good and function as you want it to you need to fix other iOS mechanisms that use the lockscreen but have nothing to do with its design.

the iphone clock is one of them. the top and bottom bars might also need to be taken care of separately... i had to manually remove the "enter password" string because it came all over my theme clock...

so no. you need to fix whatever glitch foreign to the theme separately - on this and any other theme you use. hence why some people don't do themes - they can be a headache sometimes (or expensive) to get them just right - so they change the font, remove the lock bars etc. but keep the standard clock.
 
Okay guys, Now that i'm home from work here is what I am going to do.

Make a US & European version
Make a light and dark version
Make it so that you can enable the widget on either the lockscreen OR springboard (or both)
The weird square while in airplane mode/no data connection will be fixed

That way, everyone will be happy :)
 
Okay guys, Now that i'm home from work here is what I am going to do.

Make a US & European version
Make a light and dark version
Make it so that you can enable the widget on either the lockscreen OR springboard (or both)
The weird square while in airplane mode/no data connection will be fixed

That way, everyone will be happy :)

Any way to make it where you can use your own wallpaper without having to add it to the theme meaning change it with the wallpaper settings
 
Okay guys, Now that i'm home from work here is what I am going to do.

Make a US & European version
Make a light and dark version
Make it so that you can enable the widget on either the lockscreen OR springboard (or both)
The weird square while in airplane mode/no data connection will be fixed

That way, everyone will be happy :)

Maybe you can add a routine that will diagnose and repair clothes dryers. ;-)
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.