Thread: [Release] iNav Final Version
-
03-19-2009, 02:30 AM #1201iPhone? More like MyPhone
- Join Date
- Dec 2008
- Location
- Virginia
- Posts
- 189
- Thanks
- 35
- Thanked 21 Times in 19 Posts
did u change the file from psd to png? Also make sure W in wallpaper is in caps
-
03-19-2009, 02:42 AM #1202My iPhone is a Part of Me
- Join Date
- Dec 2008
- Location
- that one place
- Posts
- 756
- Thanks
- 169
- Thanked 102 Times in 92 Posts
Hey I think I figured out what is wrong
Photoshop won't let me Save it as a .png file
Bro
I'm sorry for asking this but could you just use this pic and put ZachF on the top left corner in Blackmoor LET
I just can't seem to make it work
And you are god at photoshop

I usually don't ask people to do it for me
But I just can't figure out what I'm doing wrong
So can I get some help?Last edited by cellmate75; 03-19-2009 at 02:56 AM. Reason: Automerged Doublepost

-
03-19-2009, 02:54 AM #1203
german umlaute
Hi,
I have a problem with the german umlaute. Attached are 2 screenshot of Lockscreen and springboard. As you can see, the german month März won't be displayed correctly.
This is my digital-clock.js:
if (English == true){
var this_weekday_name_array = new Array( "Sunday","Monday","Tuesday","Wednesday","Thursday" ,"Friday","Saturday" )
var this_month_name_array = new Array( "January","February","March","April","May","June", "July","August","September","October","November"," December" )
}
if (French == true){
var this_weekday_name_array = new Array( "Dimanche","lundi","mardi","mercredi","jeudi","ven dredi","samedi" )
var this_month_name_array = new Array( "Janvier","février","mars","avril","peut","juin"," juillet","août","septembre","octobre","novembre"," décembre" )
}
if (German == true){
var this_weekday_name_array = new Array( "Sonntag","Montag","Dienstag","Mittwoch","Donnerst ag","Freitag","Samstag" )
var this_month_name_array = new Array( "Januar","Februar","März","April","Mai","Juni","Ju li","August","September","Oktober","November","Dez ember" )
}
if (Italian == true){
var this_weekday_name_array = new Array( "Domenica","lunedì","martedì","mercoledì","giovedì ","venerdì","sabato" )
var this_month_name_array = new Array( "Gennaio","febbraio","marzo","aprile","può","giugn o","luglio","agosto","settembre","ottobre","novemb re","dicembre" )
}
if (Spanish == true){
var this_weekday_name_array = new Array( "Domingo","lunes","martes","miércoles","jueves","v iernes","sábado" )
var this_month_name_array = new Array( "Enero","febrero","marcha","abril","puede","junio" ,"julio","agosto","septiembre","octubre","noviembr e","diciembre" )
}
if (Dutch == true){
var this_weekday_name_array = new Array( "Zondag","Maandag","Dinsdag","Woensdag","Donderdag ","Vrijdag","Zaterdag" )
var this_month_name_array = new Array( "Januari","Februari","Maart","April","Mei","Juni", "Juli","Augustus","September","Oktober","November" ,"December" )
}
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
currentHours = ( currentHours < 10 ? "0" : "" ) + currentHours;
currentMinutes = ( currentMinutes < 10 ? "0" : "" ) + currentMinutes;
currentSeconds = ( currentSeconds < 10 ? "0" : "" ) + currentSeconds;
if (DisplayTwentyFourHourClock == false) {
currentHours = ( currentHours > 12 ) ? currentHours - 12 : currentHours;
currentHours = ( currentHours == 0 ) ? 12 : currentHours;
}
var currentTimeString = currentHours + ":" + currentMinutes;
document.getElementById("clock").firstChild.nodeVa lue = currentTimeString;
}
function init2 ( )
{
timeDisplay = document.createTextNode ( "" );
document.getElementById("ampm").appendChild ( timeDisplay );
}
function amPm ( )
{
var currentTime = new Date ( );
var currentHours = currentTime.getHours ( );
if (DisplayAMPM == true){
var timeOfDay = ( currentHours < 12 ) ? "AM" : "PM";
}
if (DisplayAMPM == false){
var timeOfDay = ( currentHours < 12 ) ? "" : "";
}
var currentTimeString = timeOfDay;
document.getElementById("ampm").firstChild.nodeVal ue = currentTimeString;
}
function init3 ( )
{
timeDisplay = document.createTextNode ( "" );
document.getElementById("DayUpdate").appendChild ( timeDisplay );
}
function DayUpdate ( )
{
var this_date_timestamp = new Date()
var this_weekday = this_date_timestamp.getDay()
var this_date = this_date_timestamp.getDate()
var this_month = this_date_timestamp.getMonth()
var this_year = this_date_timestamp.getYear()
if (this_year < 1000)
this_year+= 1900;
if (this_year==101)
this_year=2001;
if (DisplayDayMonthDate == true){
document.getElementById("DayUpdate").firstChild.no deValue = this_weekday_name_array[this_weekday] + ", " + this_month_name_array[this_month] + " " + this_date;
}
if (DisplayDayMonth == true){
document.getElementById("DayUpdate").firstChild.no deValue = this_weekday_name_array[this_weekday] + ", " + this_month_name_array[this_month];
}
if (DisplayDay == true){
document.getElementById("DayUpdate").firstChild.no deValue = this_weekday_name_array[this_weekday];
}
if (DisplayDayDate == true){
document.getElementById("DayUpdate").firstChild.no deValue = this_weekday_name_array[this_weekday] + ", " + this_date;
}
if (DisplayMonthDate == true){
document.getElementById("DayUpdate").firstChild.no deValue = this_month_name_array[this_month] + " " + this_date;
}
if (DisplayDateMonth == true){
document.getElementById("DayUpdate").firstChild.no deValue = this_date + ", " + this_month_name_array[this_month];
}
if (DisplayYear == true){
document.getElementById("DayUpdate").firstChild.no deValue = this_year;
}
}
function init4 ( )
{
timeDisplay = document.createTextNode ( "" );
document.getElementById("calendar").appendChild ( timeDisplay );
}
function calendarDate ( )
{
var this_date_timestamp = new Date()
var this_weekday = this_date_timestamp.getDay()
var this_date = this_date_timestamp.getDate()
var this_month = this_date_timestamp.getMonth()
var this_year = this_date_timestamp.getYear()
if (this_year < 1000)
this_year+= 1900;
if (this_year==101)
this_year=2001;
if (DisplayDayMonthDateAlt == true){
document.getElementById("calendar").firstChild.nod eValue = this_weekday_name_array[this_weekday] + ", " + this_month_name_array[this_month] + " " + this_date;
}
if (DisplayDayMonthAlt == true){
document.getElementById("calendar").firstChild.nod eValue = this_weekday_name_array[this_weekday] + ", " + this_month_name_array[this_month];
}
if (DisplayDayAlt == true){
document.getElementById("calendar").firstChild.nod eValue = this_weekday_name_array[this_weekday];
}
if (DisplayDayDateAlt == true){
document.getElementById("calendar").firstChild.nod eValue = this_weekday_name_array[this_weekday] + ", " + this_date;
}
if (DisplayMonthDateAlt == true){
document.getElementById("calendar").firstChild.nod eValue = this_month_name_array[this_month] + " " + this_date;
}
if (DisplayDateMonthAlt == true){
document.getElementById("calendar").firstChild.nod eValue = this_date + ", " + this_month_name_array[this_month];
}
if (DisplayYearAlt == true){
document.getElementById("calendar").firstChild.nod eValue = this_year;
}
}
Anybode can help??
greetings from munichLast edited by muenchn_er; 03-19-2009 at 02:58 AM.
-
03-19-2009, 03:02 AM #1204My iPhone is a Part of Me
- Join Date
- Dec 2008
- Location
- that one place
- Posts
- 756
- Thanks
- 169
- Thanked 102 Times in 92 Posts
Maybe anything that says März you should just put Marz
>.>
<.<
Or is that too drastic?
-
03-19-2009, 03:06 AM #1205
I want to have a perfect theme.

Marz is not perfect.
-
03-19-2009, 03:12 AM #1206My iPhone is a Part of Me
- Join Date
- Dec 2008
- Location
- that one place
- Posts
- 756
- Thanks
- 169
- Thanked 102 Times in 92 Posts
Yes I feel your pain
Well you speak english so why not have it english?
-
03-19-2009, 03:26 AM #1207
If you look on the second picture, you can see, it works. But not in the digital clock with the theme.
It should run perfect and my mother language is german (bavarian) not english
-
03-19-2009, 04:18 AM #1208
Is it the font you are using?
-
03-19-2009, 04:24 AM #1209iPhone? More like MyPhone
- Join Date
- Mar 2008
- Location
- Osnabruck - Germany
- Posts
- 186
- Thanks
- 71
- Thanked 41 Times in 30 Posts
Hi Erwin,
I don´t can find any mistake in the config. I think it is a problem with the umlaut. I see other widgets with the same prob. I would to say delete the html.png (locksreen) and change the word märz into Maerz. Sorry about not good news about your prob.
rgds
Lars
-
03-19-2009, 05:39 AM #1210What's Jailbreak?
- Join Date
- Oct 2008
- Location
- Sydney, Australia, Australia
- Posts
- 20
- Thanks
- 3
- Thanked 0 Times in 0 Posts
a noob question here
in the original iNav, how can i get back the lock screen with visible top bar. I mean the bar under the clock, it is now transparent, how can i get it be visible?
-
03-19-2009, 05:51 AM #1211
@Münchner
You have a pm. Du hast eine PM...
-
03-19-2009, 06:18 AM #1212iPhone? More like MyPhone
- Join Date
- Mar 2009
- Location
- Come the Apocalypse I shall be Omnipresent
- Posts
- 180
- Thanks
- 13
- Thanked 55 Times in 42 Posts
-
The Following 3 Users Say Thank You to ElGriton For This Useful Post:
ipodtouchsupersaiyajin (03-19-2009), LuCiFeRkO (03-19-2009), rivrusk (03-19-2009)
-
03-19-2009, 07:06 AM #1213
Cellmate75
Use the "Save for web" menu option in photoshop to save as a png file. It wll allow you to choose file types jpg, gif, or png. You should also check and see if the color mode is set to cmyk. Photoshop won't let you save a cmyk or layered file as a png. Hope this helps.
Jester420
-
The Following User Says Thank You to jester420 For This Useful Post:
cellmate75 (03-19-2009)
-
03-19-2009, 07:42 AM #1214
I used this theme for two days and those were the best two days with my iphone. I had to led the theme go because of the memory consumption but trust me dude, THATS A NICE THEME reeco!!!
-
03-19-2009, 07:51 AM #1215
Hey thanks for this mod, looks really nice. Just one thing though, would it be possible for you to blend in some of the reflections on the icons? It has been blended in nicely on the apps icon. Also maybe add an xbox 360 icon for the games?
thanks in advance
-
03-19-2009, 07:57 AM #1216What's Jailbreak?
- Join Date
- Oct 2008
- Location
- Sydney, Australia, Australia
- Posts
- 20
- Thanks
- 3
- Thanked 0 Times in 0 Posts
-
03-19-2009, 08:09 AM #1217
-
03-19-2009, 08:45 AM #1218
-
03-19-2009, 08:56 AM #1219
Thanks so much for your help, guys, I got it perfect now!
Last edited by wase4711; 03-19-2009 at 09:35 AM.
-
03-19-2009, 09:20 AM #1220iPhoneaholic
- Join Date
- Jan 2009
- Location
- Springboard
- Posts
- 391
- Thanks
- 384
- Thanked 636 Times in 234 Posts



LinkBack URL
About LinkBacks
Reply With Quote



