+ Reply
Page 61 of 191 FirstFirst ... 11 515960616263 71 111 161 ... LastLast
Results 1,201 to 1,220 of 3812
  1. #1201
    iPhone? More like MyPhone rel1215's Avatar
    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

  2. #1202
    My iPhone is a Part of Me cellmate75's Avatar
    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

  3. #1203
    What's Jailbreak?
    Join Date
    Feb 2009
    Posts
    28
    Thanks
    19
    Thanked 8 Times in 8 Posts

    Default 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 munich
    Last edited by muenchn_er; 03-19-2009 at 02:58 AM.

  4. #1204
    My iPhone is a Part of Me cellmate75's Avatar
    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?

  5. #1205
    What's Jailbreak?
    Join Date
    Feb 2009
    Posts
    28
    Thanks
    19
    Thanked 8 Times in 8 Posts

    I want to have a perfect theme.
    Marz is not perfect.

  6. #1206
    My iPhone is a Part of Me cellmate75's Avatar
    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?

  7. #1207
    What's Jailbreak?
    Join Date
    Feb 2009
    Posts
    28
    Thanks
    19
    Thanked 8 Times in 8 Posts

    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

  8. #1208
    Green Apple
    Join Date
    Apr 2008
    Posts
    36
    Thanks
    1
    Thanked 13 Times in 9 Posts

    Is it the font you are using?

  9. #1209
    iPhone? More like MyPhone Lilalaune's Avatar
    Join Date
    Mar 2008
    Location
    Osnabruck - Germany
    Posts
    186
    Thanks
    71
    Thanked 41 Times in 30 Posts

    Quote Originally Posted by muenchn_er View Post
    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
    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

  10. #1210
    What'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?

  11. #1211
    Green Apple
    Join Date
    Sep 2008
    Posts
    83
    Thanks
    2
    Thanked 4 Times in 4 Posts

    @Münchner
    You have a pm. Du hast eine PM...

  12. #1212
    iPhone? More like MyPhone ElGriton's Avatar
    Join Date
    Mar 2009
    Location
    Come the Apocalypse I shall be Omnipresent
    Posts
    180
    Thanks
    13
    Thanked 55 Times in 42 Posts

    Quote Originally Posted by ipodtouchsupersaiyajin View Post
    PLEASE ELGRITON CAN YOU SHARE YOUR PHONE PNG?

    Thanks!!!!
    Here ya go my friend.
    Attached Thumbnails Attached Thumbnails [Release] iNav Final Version-phone.png  
    If you're requesting icons PLEASE include the original and the correct spelling. It makes our job 10X easier. Thank you.
    If you we've helped you hit the thanks button. it makes us giggle.

  13. 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)

  14. #1213
    What's Jailbreak?
    Join Date
    Oct 2007
    Posts
    1
    Thanks
    0
    Thanked 1 Time in 1 Post
    Quote Originally Posted by cellmate75 View Post
    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?
    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

  15. The Following User Says Thank You to jester420 For This Useful Post:

    cellmate75 (03-19-2009)

  16. #1214
    Green Apple
    Join Date
    Jan 2009
    Posts
    30
    Thanks
    0
    Thanked 4 Times in 2 Posts

    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!!!

  17. #1215
    What's Jailbreak?
    Join Date
    Mar 2009
    Posts
    10
    Thanks
    3
    Thanked 0 Times in 0 Posts

    Quote Originally Posted by ipodtouchsupersaiyajin View Post
    THANKS TO ALL ARTISTS!!!!


    Hope you likeAttachment 232271

    2 lockscreens and 2 icons for Apps
    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

  18. #1216
    What's Jailbreak?
    Join Date
    Oct 2008
    Location
    Sydney, Australia, Australia
    Posts
    20
    Thanks
    3
    Thanked 0 Times in 0 Posts

    Quote Originally Posted by NogoNogo View Post
    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?
    bump it up

    and another thing, any idea why the duration of the call (the second) disappear in calling screen?

  19. #1217
    Green Apple
    Join Date
    Mar 2009
    Posts
    51
    Thanks
    14
    Thanked 4 Times in 4 Posts

    Quote Originally Posted by nickh View Post
    Change it in the configureMe file, its the 5th line down, change it to where you are.


    There are a few entries on that line, and no matter how I edit them, I cant get my location to show up..
    I am in hinsdale, illinois, 60527, usa..

    Could you please tell me exactly how to edit it?

    Thank you very much!

    wase4711

  20. #1218
    Green Apple
    Join Date
    Jul 2008
    Posts
    47
    Thanks
    15
    Thanked 5 Times in 4 Posts

    Quote Originally Posted by wase4711 View Post
    There are a few entries on that line, and no matter how I edit them, I cant get my location to show up..
    I am in hinsdale, illinois, 60527, usa..

    Could you please tell me exactly how to edit it?

    Thank you very much!

    wase4711
    Try USIL0548.

  21. #1219
    Green Apple
    Join Date
    Mar 2009
    Posts
    51
    Thanks
    14
    Thanked 4 Times in 4 Posts

    Thanks so much for your help, guys, I got it perfect now!
    Last edited by wase4711; 03-19-2009 at 09:35 AM.

  22. #1220
    iPhoneaholic LuCiFeRkO's Avatar
    Join Date
    Jan 2009
    Location
    Springboard
    Posts
    391
    Thanks
    384
    Thanked 636 Times in 234 Posts

    here's my modded dialer keypad for iNAV Black....what u think guys?!!


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts