Apple iPhone Forum und Community

Normale Version: Theme iSatin by zausser
Du siehst gerade eine vereinfachte Darstellung unserer Inhalte. Normale Ansicht mit richtiger Formatierung.
Das hab ich mich auch schon mal gefragt Biggrin Lösung hab ich noch keine gefunden. Lasse es aber auch so. Das einmal-nach-rechts streifen macht mir nichts aus.
(22.12.2009, 17:53)paansen schrieb: [ -> ]kann mir einer sagen, ob man iblanks in einen categories ordner bekommt?

hab naemlich das problem, das wenn man mehr als 9 icons in einem ordner hat das das theme dann ja rel bloed ist, weil man rechts "über den rand" kommt... also uber den rand vom hintergrundbild!

gibts da ne loesung fuer?

lieben gruß

mach dir doch ein anderes hintergrundbild rein, oder bearbeite das vorhandene. ich hab mir das so eingestellt das ich nur 2 reihen habe.
JA reihen kann man sich auch auf 3 Stellen aber halt leider spalten nicht...oder lieg ich da falsch?
Genau, Reihen hab ich auch auf 3 eingestellt. Es geht ja auch nicht anders Zwinkern Wo sollten sonst die Apps hin die in den Categorie Ordner rein kommen.
Hi, ich nochmal. Ich bin ja noch in der "Findung" welches Theme ich nutzen will. Sind ja alle der Hammer. Habe jetzt wohl nen Favoriten.
In Winterboard heisst es Ovation [Z]
Das ist das mit dem großen Wettersymbol vorne drauf. Das Theme hat ja auf dem Lockscreen eine eigene Uhr oben links. In der mitte steht das datum, leider in egnlisch, kann man das ändern? und rechts oben steht "ibnyaffa", was ist das?
Leider habe ich dadrüber auch noch eine normale große Uhr. Also doppelt. wie bekomm ich die weg???
und auf dem normalen screen ist ja auch das wetter zu sehen. aber falscher ort und nicht Gradanzeige. wo ändere ich dies?
wenn ihr das alles löst, sieht der Weihnachtsmann das xmas3

kleine frage am rande. in vista funktioniert meine iFun Box. Hier unter XP klappt die verbindung nicht. weiss da jemand bescheid???
Hab es zwar schon 100x geschrieben, aber öffne die configureMe.js
Dort sollte ein Eintrag sein mit var isCelsius ... den stellst du auf true (Standard steht false)

Ovation Z kenn ich nicht, aber im ModMyi Forum sind viele Beiträge wegen der Uhr und dem Wetter Icon.
hi Crow,

das mit den true hab ich schon, war alt etwas anders weil kein extra wether ordner wie beim ibnWeather.


ich glaub ich habs versaut.

ich poste mal die appleaccuweather und die configureMe aus IBN Weather

kannst du bitte mal gucken wo der fehler liegt? habe fragezeichen aufm screen

appleaccuweather:
// this Widget is made for fun and entertainment purposes...
// hope it all cool and no one has a problome with it....





var MiniIcons = //Fix Up for weatherParser.js but also enables standardisation of sorts
[
"sun", // 1 Sunny
"cloudy1", // 2 Mostly Sunny
"cloudy2", // 3 Partly Sunny
"cloudy3", // 4 Intermittent Clouds
"cloudy4", // 5 Hazy Sunshione
"sun_cloudy2", // 6 Mostly Cloudy
"cloudy5", // 7 Cloudy (am/pm)
"fog", // 8 Dreary (am/pm)
"dunno", // 9 retired
"dunno", // 10 retired
"fog", // 11 fog (am/pm)
"rain3", // 12 showers (am/pm)
"rain1", // 13 Mostly Cloudy with Showers
"sun_rainy", // 14 Partly Sunny with Showers
"tstorm3", // 15 Thunderstorms (am/pm)
"tstorm2", // 16 Mostly Cloudy with Thunder Showers
"tstorm1", // 17 Partly Sunnty with Thunder Showers
"rain2", // 18 Rain (am/pm)
"cloudy10", // 19 Flurries (am/pm)
"cloudy11", // 20 Mostly Cloudy with Flurries
"cloudy12", // 21 Partly Sunny with Flurries
"flurries4", // 22 Snow (am/pm)
"flurries3", // 23 Mostly Cloudy with Snow
"ice", // 24 Ice (am/pm)
"rain&snow", // 25 Sleet (am/pm)
"hail2", // 26 Freezing Rain (am/pm)
"dunno", // 27 retired
"dunno", // 28 retired
"rain&snow", // 29 Rain and Snow Mixed (am/pm)
"sun", // 30 Hot (am/pm)
"overcast", // 31 Cold (am/pm)
"wind030", // 32 Windy (am/pm)
// Night only Icons;
"moon_clear", // 33 Clear
"moon_cloudy2", // 34 Mostly Clear
"moon_cloudy", // 35 Partly Cloudy
"cloudy5", // 36 Intermittent Clouds
"haze", // 37 Hazy
"moon_cloudy2", // 38 Mostly Cloudy
"moon_rainy", // 39 Partly Cloudy with Showers
"rain&clouds", // 40 Mostly Cloudy with Showers
"lightening", // 41 Partly Cloudy with Thunder Showers
"lightening", // 42 Mostly Cloudy with Thunder Showers
"moon_icy", // 43 Mostly Cloudy with Flurries
"flurries4" // 44 Mostly Cloudy with Flurries
];


function findChild (element, nodeName)
{
var child;

for (child = element.firstChild; child != null; child = child.nextSibling)
{
if (child.nodeName == nodeName)
return child;
}

return null;
}


function trimWhiteSpace (string)
{
return string.replace(/^\s*/, '').replace(/\s*$/, '');
}

// returns an anonymous object like so
// object
// error: Boolean false for success
// errorString: failure string
// hi: Fahrenheit
// lo: Fahrenheit
// temp: Fahrenheit
// realFeel: Farenheit
// icon : accuweather icon code
// description: accuweather description
// city: City (first caps)
// time: time 24 hours(nn:nn)
// sunset: time 24 hours (nn:nn)
// sunrise: time 24 hours (nn:nn)

function fetchWeatherData (callback, zip)
{
//var url = 'http://apple.accuweather.com/adcbin/apple/Apple_Weather_Data.asp?zipcode=';
var url = 'http://wu.apple.com/adcbin/apple/Apple_Weather_Data.asp?zipcode=';

if (window.timerInterval != 300000)
window.timerInterval = 300000; // 5 minutes

var xml_request = new XMLHttpRequest();
xml_request.onload = function(e) {xml_loaded(e, xml_request, callback);}
xml_request.overrideMimeType("text/xml");
xml_request.open("GET", url+zip);
xml_request.setRequestHeader("Cache-Control", "no-cache");
xml_request.setRequestHeader("wx", "385");
xml_request.send(null);

return xml_request;
}

function constructError (string)
{
return {error:true, errorString:string};
}

// parses string of the form nn:nn
function parseTimeString(string)
{
var obj = null;
try {
var array = string.match (/\d{1,2}/g);

obj = {hour:parseInt(array[0], 10), minute:parseInt(array[1],10)};
}
catch (ex)
{
// ignore
}

return obj;
}

function parseDayCode (dayCode)
{
return trimWhiteSpace(dayCode).substr (0, 3).toUpperCase();
}

function xml_loaded (event, request, callback)
{
if (request.responseXML)
{
var obj = {error:false, errorString:null};
var adc_Database = findChild (request.responseXML, "adc_Database");
if (adc_Database == null) {callback(constructError("no <adc_Database>")); return;}

var CurrentConditions = findChild (adc_Database, "CurrentConditions");
if (CurrentConditions == null) {callback(constructError("no <CurrentConditions>")); return;}

var tag = findChild (CurrentConditions, "Time");
if (tag != null)
obj.time = parseTimeString (tag.firstChild.data);
else
obj.time = null;

tag = findChild (CurrentConditions, "City");
if (tag == null) {callback(constructError("no <City>")); return;}
obj.city = trimWhiteSpace(tag.firstChild.data.toString()).toLowerCase();

tag = findChild (CurrentConditions, "Temperature");
if (tag == null) {callback(constructError("no <Temperature>")); return;}
obj.temp = parseInt (tag.firstChild.data);

tag = findChild (CurrentConditions, "RealFeel");
if (tag == null) {callback(constructError("no <RealFeel>")); return;}
obj.realFeel = parseInt (tag.firstChild.data);

tag = findChild (CurrentConditions, "WeatherText");
if (tag == null)
obj.description = null;
else
obj.description = trimWhiteSpace(tag.firstChild.data);

tag = findChild (CurrentConditions, "WeatherIcon");
if (tag == null) {callback(constructError("no <WeatherIcon>")); return;}
obj.icon = parseInt (tag.firstChild.data, 10);
obj.icon -= 1; //Accuweather starts at 1

obj.sunset = null;
obj.sunrise = null;
var Planets = findChild (adc_Database, "Planets");
if (Planets != null)
{
tag = findChild (Planets, "Sun");
if (tag != null)
{
var rise = tag.getAttribute("rise");
var set = tag.getAttribute("set");

if (rise != null && set != null)
{
obj.sunset = parseTimeString (set);
obj.sunrise = parseTimeString(rise);
}
}
}



callback (obj);

}
else
{
callback ({error:true, errorString:"XML request failed. no responseXML"}); //Could be any number of things..
}
}

// returns an anonymous object like so
// object
// error: Boolean false for success
// errorString: failure string
// cities: array (alphabetical by name)
// object
// name: city name
// zip: postal code
// state: city state
// refine: boolean - true if the search is too generic
function validateWeatherLocation (location, callback)
{
//var url = 'http://apple.accuweather.com/adcbin/apple/Apple_find_city.asp?location=';
var url = 'http://wu.apple.com/adcbin/apple/Apple_find_city.asp?location=';

var xml_request = new XMLHttpRequest();
xml_request.onload = function(e) {xml_validateloaded(e, xml_request, callback);}
xml_request.overrideMimeType("text/xml");
xml_request.open("GET", url+location);
xml_request.setRequestHeader("Cache-Control", "no-cache");
xml_request.send(null);
}

function xml_validateloaded (event, request, callback)
{
if (request.responseXML)
{
var obj = {error:false, errorString:null, cities:new Array, refine:false};
var adc_Database = findChild (request.responseXML, "adc_Database");
if (adc_Database == null) {callback(constructError("no <adc_Database>")); return;}

var CityList = findChild (adc_Database, "CityList");
if (CityList == null) {callback(constructError("no <CityList>")); return;}

if (CityList.getAttribute('extra_cities') == '1')
obj.refine = true;

for (child = CityList.firstChild; child != null; child = child.nextSibling)
{
if (child.nodeName == "location")
{
var city = child.getAttribute("city");
var state = child.getAttribute("state");
var zip = child.getAttribute("postal");

if (city && state && zip)
{
obj.cities[obj.cities.length] = {name:city, state:state, zip:zip};
}
}
}

callback (obj);
}
else
{
callback ({error:true, errorString:"No Response"});
}
}

function createGoToURL (location)
{
return 'http://apple.accuweather.com/adcbin/apple/Apple_weather.asp?location=' + escape(location);
}






/*
Copyright _ 2005, Apple Computer, Inc. All rights reserved.
NOTE: Use of this source code is subject to the terms of the Software
License Agreement for Mac OS X, which accompanies the code. Your use
of this source code signifies your agreement to such license terms and
conditions. Except as expressly granted in the Software License Agreement
for Mac OS X, no other copyright, patent, or other intellectual property
license or right is granted, either expressly or by implication, by Apple.
*/


XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
configureMe:



// The location field should be a relatively machine-legible string
// if using the default, Apple/AccuWeather parser (originally from Leopard's Weather.wdgt)
var locale = "Berlin, Germany" //e.g. 'Defiance, Ohio'|'Moscow, Russia'|'Ledyard, AT'|'London, UK'

// Set to 'false' if you'd prefer Farenheit
var isCelsius = true //true|false

// Use 'Real Feel' temperatures where possible, taking into account Wind Chill, Humidity etc.
var useRealFeel = false //true|false

/*––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
//Enable Wallpaper and/or Lock Screen
var enableWallpaper = true; //true|false
var enableLockScreen = false; //true|false [Currently, it is suggested that the lockScreen is disabled.]

// Supplied styles are 'originalBubble', 'myopia', 'iconOnly' and 'split'.
// (Add your own to the CSS folder!)
var stylesheetWall = 'iCarbon' //'originalBubble'|'myopia'|'iconOnly'|'split'|'oneLine'
var stylesheetLock = 'iCarbon' //See above.

// The only supplied icon set is 'klear'
// Images must follow the same naming schema as the 'springboard' set (borrowed from KWeather)
var iconSetWall = 'springboard' //'springboard'|'Lockscreen'
var iconExtWall = ".png" //'.png'|.'gif' etc.
var iconSetLock = 'springboard' //See above.
var iconExtLock = '.png' //See above.


/*––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/

// The other available source is 'yahooWeather' which for the 'locale'
// requires a US zip or location code (e.g. UKXX0085 or CHXX0008) from http://weather.yahoo.com
var source = 'appleAccuweatherStolen' //'appleAccuweatherStolen'|'yahooWeather'

// Please endeavour to set this to a sensible value if you really must change it...
var updateInterval = 35 //Minutes
uff .. da bin ich leider überfragt. Frag doch einfach mal im ModMyi Forum nach. Da sitzt der zausser (Theme Creator) und kennt sich sicher am besten damit aus.
ja das problem ist die etwas andere sprache als die meinige :-D
Kann auch kaum Englisch, aber hab mich da damals auch durchgeboxt Smiley Zur Not hilft auch die Google Übersetzung Zwinkern
so, das mit dem wetter scheint zu klappen, komischer weis jetzt.

nur das mit der großen uhranzeige stört.
und dann wenn die kleine uhr oben links bleibt, sie auf 24h zu kriegen, hab alles durchgeguckt, finde nix dazu
fuer die große uhr kannste clock hide oder so aehnlich nehmen. gibts bei cydia!
Genau, um die große Uhr abzuschalten mußt du Clock Hide aus Cydia installieren.
Um die kleine Uhr auf 24h zu stellen prauchst den Patch von der modmyi Seite
Ovation_Z_24hr_Patch.rar (im 1.Post). Da ist bauch ne Read ME drin wie du das machen mußt.
Oh Danke schön, das hilft mir weiter. Wie nett :-)
Das einzige was etwas nervt ist, wenn man den lockscreen anmacht, das schicke wetter icon, dauert ewig bis es geladen ist.
Hängt dann immer ein ? drin.
da kennt ihr nicht auch zufällig nen trick?! hihi
Also bei mir ist die Anzeige sofort da.
Hast du in der appleAccuweatherStolen.js die du oben gepostet hast etwas verändert?
das da oben war glaub ich die aus IBN Weather, ich poste mal jetzt die Accuweather aus Ovation Z.

// this Widget is made for fun and entertainment purposes...
// hope it all cool and no one has a problome with it....





var MiniIcons = //Fix Up for weatherParser.js but also enables standardisation of sorts
[
"sun", // 1 Sunny
"cloudy1", // 2 Mostly Sunny
"cloudy2", // 3 Partly Sunny
"cloudy3", // 4 Intermittent Clouds
"cloudy4", // 5 Hazy Sunshione
"sun&cloudy2", // 6 Mostly Cloudy
"clouds0", // 7 Cloudy (am/pm)
"fog", // 8 Dreary (am/pm)
"dunno", // 9 retired
"dunno", // 10 retired
"fog", // 11 fog (am/pm)
"rain2", // 12 showers (am/pm)
"light-rain", // 13 Mostly Cloudy with Showers
"sun_rainy", // 14 Partly Sunny with Showers
"tstorm3", // 15 Thunderstorms (am/pm)
"tstorm2", // 16 Mostly Cloudy with Thunder Showers
"tstorm1", // 17 Partly Sunnty with Thunder Showers
"rain2", // 18 Rain (am/pm)
"cloudy10", // 19 Flurries (am/pm)
"cloudy11", // 20 Mostly Cloudy with Flurries
"cloudy12", // 21 Partly Sunny with Flurries
"snow", // 22 Snow (am/pm)
"flurries", // 23 Mostly Cloudy with Snow
"ice", // 24 Ice (am/pm)
"snow&rain2", // 25 Sleet (am/pm)
"hail", // 26 Freezing Rain (am/pm)
"dunno", // 27 retired
"dunno", // 28 retired
"snow&rain2", // 29 Rain and Snow Mixed (am/pm)
"sunny", // 30 Hot (am/pm)
"moon_clear", // 31 Cold (am/pm)
"wind030", // 32 Windy (am/pm)
// Night only Icons;
"moon_clear", // 33 Clear
"moon_cloudy", // 34 Mostly Clear
"moon_cloudy", // 35 Partly Cloudy
"cloudy5", // 36 Intermittent Clouds
"moon_cloudy", // 37 Hazy
"moon_cloudy2", // 38 Mostly Cloudy
"moon_rainy", // 39 Partly Cloudy with Showers
"rain1", // 40 Mostly Cloudy with Showers
"tstorm1", // 41 Partly Cloudy with Thunder Showers
"tstorm1", // 42 Mostly Cloudy with Thunder Showers
"moon_icy", // 43 Mostly Cloudy with Flurries
"flurries", // 44 Mostly Cloudy with Flurries
"light-rain", //45 Light Rain
];



if (window.timerInterval != 300000)
window.timerInterval = 300000; // 5 minutes


function findChild (element, nodeName)
{
var child;

for (child = element.firstChild; child != null; child = child.nextSibling)
{
if (child.nodeName == nodeName)
return child;
}

return null;
}


function trimWhiteSpace (string)
{
return string.replace(/^\s*/, '').replace(/\s*$/, '');
}

// returns an anonymous object like so
// object
// error: Boolean false for success
// errorString: failure string
// hi: Fahrenheit
// lo: Fahrenheit
// temp: Fahrenheit
// realFeel: Farenheit
// icon : accuweather icon code
// description: accuweather description
// city: City (first caps)
// time: time 24 hours(nn:nn)
// sunset: time 24 hours (nn:nn)
// sunrise: time 24 hours (nn:nn)

function fetchWeatherData (callback, zip)
{
//var url = 'http://apple.accuweather.com/adcbin/apple/Apple_Weather_Data.asp?zipcode=';
var url = 'http://wu.apple.com/adcbin/apple/Apple_Weather_Data.asp?zipcode=';

if (window.timerInterval != 300000)
window.timerInterval = 300000; // 5 minutes

var xml_request = new XMLHttpRequest();
xml_request.onload = function(e) {xml_loaded(e, xml_request, callback);}
xml_request.overrideMimeType("text/xml");
xml_request.open("GET", url+zip);
xml_request.setRequestHeader("Cache-Control", "no-cache");
xml_request.setRequestHeader("wx", "385");
xml_request.send(null);

return xml_request;
}

function constructError (string)
{
return {error:true, errorString:string};
}

// parses string of the form nn:nn
function parseTimeString(string)
{
var obj = null;
try {
var array = string.match (/\d{1,2}/g);

obj = {hour:parseInt(array[0], 10), minute:parseInt(array[1],10)};
}
catch (ex)
{
// ignore
}

return obj;
}

function parseDayCode (dayCode)
{
return trimWhiteSpace(dayCode).substr (0, 3).toUpperCase();
}

function xml_loaded (event, request, callback)
{
if (request.responseXML)
{
var obj = {error:false, errorString:null};
var adc_Database = findChild (request.responseXML, "adc_Database");
if (adc_Database == null) {callback(constructError("no <adc_Database>")); return;}

var CurrentConditions = findChild (adc_Database, "CurrentConditions");
if (CurrentConditions == null) {callback(constructError("no <CurrentConditions>")); return;}

var tag = findChild (CurrentConditions, "Time");
if (tag != null)
obj.time = parseTimeString (tag.firstChild.data);
else
obj.time = null;

tag = findChild (CurrentConditions, "City");
if (tag == null) {callback(constructError("no <City>")); return;}
obj.city = trimWhiteSpace(tag.firstChild.data.toString()).toLowerCase();

tag = findChild (CurrentConditions, "Temperature");
if (tag == null) {callback(constructError("no <Temperature>")); return;}
obj.temp = parseInt (tag.firstChild.data);

tag = findChild (CurrentConditions, "RealFeel");
if (tag == null) {callback(constructError("no <RealFeel>")); return;}
obj.realFeel = parseInt (tag.firstChild.data);

tag = findChild (CurrentConditions, "WeatherText");
if (tag == null)
obj.description = null;
else
obj.description = trimWhiteSpace(tag.firstChild.data);

tag = findChild (CurrentConditions, "WeatherIcon");
if (tag == null) {callback(constructError("no <WeatherIcon>")); return;}
obj.icon = parseInt (tag.firstChild.data, 10);
obj.icon -= 1; //Accuweather starts at 1

obj.sunset = null;
obj.sunrise = null;
var Planets = findChild (adc_Database, "Planets");
if (Planets != null)
{
tag = findChild (Planets, "Sun");
if (tag != null)
{
var rise = tag.getAttribute("rise");
var set = tag.getAttribute("set");

if (rise != null && set != null)
{
obj.sunset = parseTimeString (set);
obj.sunrise = parseTimeString(rise);
}
}
}



callback (obj);

}
else
{
callback ({error:true, errorString:"XML request failed. no responseXML"}); //Could be any number of things..
}
}

// returns an anonymous object like so
// object
// error: Boolean false for success
// errorString: failure string
// cities: array (alphabetical by name)
// object
// name: city name
// zip: postal code
// state: city state
// refine: boolean - true if the search is too generic
function validateWeatherLocation (location, callback)
{
//var url = 'http://apple.accuweather.com/adcbin/apple/Apple_find_city.asp?location=';
var url = 'http://wu.apple.com/adcbin/apple/Apple_find_city.asp?location=';

var xml_request = new XMLHttpRequest();
xml_request.onload = function(e) {xml_validateloaded(e, xml_request, callback);}
xml_request.overrideMimeType("text/xml");
xml_request.open("GET", url+location);
xml_request.setRequestHeader("Cache-Control", "no-cache");
xml_request.send(null);
}

function xml_validateloaded (event, request, callback)
{
if (request.responseXML)
{
var obj = {error:false, errorString:null, cities:new Array, refine:false};
var adc_Database = findChild (request.responseXML, "adc_Database");
if (adc_Database == null) {callback(constructError("no <adc_Database>")); return;}

var CityList = findChild (adc_Database, "CityList");
if (CityList == null) {callback(constructError("no <CityList>")); return;}

if (CityList.getAttribute('extra_cities') == '1')
obj.refine = true;

for (child = CityList.firstChild; child != null; child = child.nextSibling)
{
if (child.nodeName == "location")
{
var city = child.getAttribute("city");
var state = child.getAttribute("state");
var zip = child.getAttribute("postal");

if (city && state && zip)
{
obj.cities[obj.cities.length] = {name:city, state:state, zip:zip};
}
}
}

callback (obj);
}
else
{
callback ({error:true, errorString:"No Response"});
}
}

function createGoToURL (location)
{
return 'http://apple.accuweather.com/adcbin/apple/Apple_weather.asp?location=' + escape(location);
}






/*
Copyright _ 2005, Apple Computer, Inc. All rights reserved.
NOTE: Use of this source code is subject to the terms of the Software
License Agreement for Mac OS X, which accompanies the code. Your use
of this source code signifies your agreement to such license terms and
conditions. Except as expressly granted in the Software License Agreement
for Mac OS X, no other copyright, patent, or other intellectual property
license or right is granted, either expressly or by implication, by Apple.
*/
also 24h anzeige aufm lockscreen geth. danke
jetzt ist die aber auf dem normalen screen auf 12h modus und ich weiss nicht wo ich das ändern soll. ich such alles durch...

und was komisch aussieht ist, wie im bild unten, der nebel ist breiter als die "uhr-wetterfläche". kann man da was machen?

und ein batterie lade screen hat das theme nicht?!
Wallpaper.html
// Convert the hours component to 12-hour format if needed
currentHours = ( currentHours > 24 ) ? currentHours - 12 : currentHours;

Die Anzeige (Nebel) ist bei mir auch so. Ich hab da auch keine Lösung für.
Eine Lösung für den Nebel habe ich bis jetzt auch noch nicht gefunden.

@Zibbo, denke mal du hast das mit den 24h hinbekommen??
...ich geh jetzt mal davon aus, du wirst bestimmt noch fragen, wie du darunter den Wochentag & Monat ins deutsche bekommst ....auf Seite 4 bei Post --> #71 müsste das ausführlich erklärt sein.
Wenn noch fragen dazu hast, meldest dich, hab auch das Ovation Z drauf.
(21.12.2009, 20:12)Uhoffi schrieb: [ -> ]Meinst du das



Ist im iSatin Theme drin. Must du in dein Theme/Bundles/com.apple.TelephonyUI kopieren. Du müßtest dann aber noch die LockBackground.png austauschen gegen eins ohne Slider. Könntest ja die Wallpaper.png dafür nehmen. Mußt ne 2.Wallpaper reinkopieren und dann als LockBackground.png umbenennen.
Die Idee gefällt mir gut, werd ich bei mir auch noch umstellen.

Vergiß aber nicht vorher Backup zu machen.

ich habe jetzt den button drin. nur würd ich gern dieses hintergrundbild behalten wollen. gibt es dieses ohne dieses sliderdingens? die die da sonst drin sind, haben diesen grund für die wetteranzeige, aber ich habe ja ein großes icon fürs wetter