IBM Wallpaper with World Clock

General Questions, Rumors, Real news & More
Message
Author
ambientscape
Junior Member
Junior Member
Posts: 411
Joined: Sat Jan 01, 2005 1:19 pm
Location: Petronas Twin Tower
Contact:

#31 Post by ambientscape » Sun Jan 28, 2007 9:23 pm

Wiz wrote:I got 2gb ram and after a reboot i got somewhere between 1.5 and 1.6gb available. I got pretty much software installed that i need at work. Also got some tools that is resident and use Symantec AV Corp Editon version 10 that use pretty much memory.
The avarage available i'm not sure about, but i guess i use somewhere between 700 and 800mb ram when i got the software i use most at work running at the same time. I also use vmware workstation sometimes for testing/lab and then i might use as much as 2gb ram.

btw: I changed the worldtime.html and added some new locations/timezones. One of the locations i added is Kuala Lumpur. Since you are from Malaysia maybe you could tell me if you use daylight saving in Malaysia?
There is no daylight saving in Kuala Lumpur. Have got the coordinates for the place yet?
-Thinkpad T23 1.2Ghz (2647-4RG) with Docking Station (2631)
-512MB RAM
-60GB Western Digital HDD
-3Com X-Jack Wireless A/B/G
-Imation External Combo DVD/CDRW
-Windows XP Pro SP2
-External 160GB Maxtor HDD

Wiz
Junior Member
Junior Member
Posts: 474
Joined: Sat May 13, 2006 6:07 am
Location: Norway

#32 Post by Wiz » Sun Jan 28, 2007 9:42 pm

ambientscape wrote:There is no daylight saving in Kuala Lumpur. Have got the coordinates for the place yet?
Thanks i didn't think Kuala Lumpur had daylight saving, but wasn't sure so had to check. I think i got pretty accurate coordinates for Kuala Lumpur. Found some maps on the internet that i used to make it as accurate as possible.

ambientscape
Junior Member
Junior Member
Posts: 411
Joined: Sat Jan 01, 2005 1:19 pm
Location: Petronas Twin Tower
Contact:

#33 Post by ambientscape » Mon Jan 29, 2007 1:03 am

Could you give me some coordinates of the city that u add in? Will try to add in as much as possible.......to look perfect.

Thanks :lol:
-Thinkpad T23 1.2Ghz (2647-4RG) with Docking Station (2631)
-512MB RAM
-60GB Western Digital HDD
-3Com X-Jack Wireless A/B/G
-Imation External Combo DVD/CDRW
-Windows XP Pro SP2
-External 160GB Maxtor HDD

mpcook
ThinkPadder
ThinkPadder
Posts: 1074
Joined: Tue May 25, 2004 6:58 pm
Location: Loveland, OH USA
Contact:

#34 Post by mpcook » Mon Jan 29, 2007 5:15 am

Wiz wrote:Search for this line: "var Clocks = new Array;" (should be somewhere around line 76) and add the following line of code on the next line:
var Clocks12H = new Array;

Then search for this one: "Clocks = new Object ();" (should be somewhere around line 82 after the previous change) and add this one on the next line:
Clocks12H = new Object ();

Then change the code (should find this starting somewhere around line 251 after the changes above) so it's like shown below:
if ( Clocks.Hours > 12 )
Clocks12H.Hours = Clocks.Hours-12;
else if ( Clocks.Hours == 0 )
Clocks12H.Hours = 12;
else
Clocks12H.Hours = Clocks.Hours;

var Clock = document.getElementById ( 'Clock' + i );
Clock.innerHTML = "<b>" + Clocks.City + "<br>" + "&nbsp;&nbsp;&nbsp;&nbsp;" + Clocks12H[i].Hours + ":" + minutes + "&nbsp;" + ampm + "</b>";

The red text is the changed or added parts. After doing this changes everything should be working fine.


For me, this simple fix worked: I changed the variable in line 264 (the new line number after changing to 12 hour clock) from "24" to "12":
if ( 0 < indent ) indent -= 12 * HourLength;
Current: 2 x W520 ET, 3 x X220 i7, T420, X230 i5, T420s, MacbookPro, Dell Venue 11 Pro
Past: IBM5150-8088 500 600E 600X T20 T21 5xT23 X30 3xX31 X32 T40 T42 3xT43 T43p SL510 T60p X60T X60s T61 2xT400 T410si T400s T500-3.06GHz X200 X201 X220i5 X220i7 2xT420s

Wiz
Junior Member
Junior Member
Posts: 474
Joined: Sat May 13, 2006 6:07 am
Location: Norway

#35 Post by Wiz » Tue Jan 30, 2007 3:57 pm

mpcook: Yeah i guess that should work as well. There are several ways to make the clock 12h instead of 24h.

ambientscape: The coordinates i got for Kuala Lumpur is 1012, 608. Let me know if you find it to be very different. The map for the background seems to not be very accurate so sometimes hard to make it perfect. The resolution i use is 1600x1200. In case that make a difference if you try it and it's way off.

STS06
Sophomore Member
Posts: 239
Joined: Tue Aug 02, 2005 9:31 am

#36 Post by STS06 » Tue Jan 30, 2007 8:28 pm

mpcook wrote:
Wiz wrote:If you change the code starting on line 241 (line 241 if looking at the original worldtime.html) so the code is like shown below you will get 12H instead of 24H.

var ampm;
Clocks.Hours = GMThours + Clocks.GMToOffset;
if ( Clocks.Hours < 0 ) Clocks.Hours += 24;
Clocks.Hours = Clocks.Hours % 24;
if ( Clocks.Hours >= 12 )
ampm = 'PM';
else
ampm = 'AM';
if ( Clocks.Hours > 12 )
Clocks.Hours = Clocks.Hours-12;
else if ( Clocks[i].Hours == 0 )
Clocks[i].Hours = Clocks[i].Hours+12;
var Clock = document.getElementById ( 'Clock' + i );
Clock.innerHTML = "<b>" + Clocks[i].City + "<br>" + "&nbsp;&nbsp;&nbsp;&nbsp;" + Clocks[i].Hours + ":" + minutes + "&nbsp;" + ampm + "</b>";

The only existing line that i changed is the last one shown above where i added the varible ampm so AM and PM is shown on the map for each location. Except from that change all the others in red is lines i added to the code. I just did a quick test to see if everything was ok after this change so let me know if something isn't working as supposed to.


Thanks all for all of the hints - I changed the cities and went to a 12 hour clock. Everything's fine except now that I have a 12 hour clock, the daylight trace (which is very cool) is confused, it appears to be 12 hours off. I have poked at the code but can't find a fix. Anyone have ideas?

Also, if you want to add any of the following cities, here are the locations and offsets (I think the GMT offsets are correct).

var OffsetsX = new Array (229,583,1085,1020);
var OffsetsY = new Array (430,384,486,620);
var City = new Array ('Cincinnati','Zurich','Shanghai','Singapore');
var GMToOffset = new Array (-5,1,7,7);
var GMToOffset2 = new Array (-6,0,7,7);


Is that all I have to change to add more cities? For example I added a city in India and simply added an extra coordinate in both the x and y offset, added the city name in the "var City" line, and added the time offset in the 'var GMToOffeset" and its subsquent second one. However, the city doesn't show up. Any ideas?

Also what do I add in if the city is 5.5 hours ahead of GMT (the Indian city is Ahmadabad btw)? I put in 5.5 but it messes up the time unfortunately.
T42 (2373N3U): 1.8 Ghz, 1.5 GB DDR, ATI Radeon 9600, 60 GB 7200 rpm HD, 15" SXGA (1400x1050) screen, CD-RW/DVD-ROM (combo), Bluetooth, Fingerprint Reader.

Wiz
Junior Member
Junior Member
Posts: 474
Joined: Sat May 13, 2006 6:07 am
Location: Norway

#37 Post by Wiz » Tue Jan 30, 2007 8:56 pm

To add a location you would have to add a value to line 69 and 70 shown as x and y below which is the coordinates on the map:

var OffsetsX = new Array (62,295,339,556,776,1080,1168,1218,x);
var OffsetsY = new Array (430,419,810,358,286,438,450,796,y);


Then you have to do the same with line 73 to add the new location/city name:

var City = new Array ('San Francisco','New York','Buenos Aires','London','Moscow','Peking','Tokyo','Sydney','x');

Then add the GMT offset at line 74 and 75 as shown below:

var GMToOffset = new Array (-8,-5,-4,0,3,8,9,10,x);
var GMToOffset2 = new Array (-9,-6,-4,-1,2,8,9,10,x);


Next you have to make a chance to line 79 which looks like this in the original file:

for ( i = 0; i < 8; ++i )

If you add one location you would have to change it like this:

for ( i = 0; i < 9; ++i )

If you add more locations you have to change it to 10, 11 etc so it's equal to the number of locations you got. You would have to do the same (increase the number so it's equal to the number of locations you got) at line 198, 219, 224 and 239.

All the line numbers is taken from the original worldtime.html file.

I know there are some locations that might be like GMT+5.30 or even GMT+5.45. To make that correct you need to do more changes to the code and also deal with the variable minutes. It should be pretty easy and not that much changes to the code though.

BaldEagle
Posts: 1
Joined: Wed Feb 07, 2007 10:38 pm
Location: North Carolina, US

World Time Active Wallpaper

#38 Post by BaldEagle » Thu Feb 08, 2007 2:15 am

Dear Friends,

Has anyone figured out how to fix the "sunlight trace" so that it moves across the "12 hour" converted display correctly. That is to say, the sunlight trace no longer is 12 hours out-of-sequence...

Thank you all for your everything you do for us...

BaldEagle
"Esse Quam Videri"

Wiz
Junior Member
Junior Member
Posts: 474
Joined: Sat May 13, 2006 6:07 am
Location: Norway

#39 Post by Wiz » Thu Feb 08, 2007 1:15 pm

I modifed the code and added a variable to easy change the display for 12 and 24 hour. When the variable contain a "1" it's shown as 24h else it's shown as 12h. The sunlight trace is correct for both of them. Also added the option to specify timezones so you can specify minutes as well to have timezones like GMT+5:45 or GMT+5:30 and not only whole hours. I guess it would be a bit hard to explain every change here so it would easier if there was somewhere i could upload or send it directly to you.
If you just want to solve the sunlight trace for the the 12h clock that is explained in this thread.

Atomic Max
Posts: 11
Joined: Sat Mar 10, 2007 1:59 am
Contact:

#40 Post by Atomic Max » Sat Mar 10, 2007 8:20 am

Hi, everybody!

Thanks a lot! Especially to Wiz :-) I'm sorry I didn't join this discussion right from the very beginning. But now I hope to implement some improvements mentioned above and to upload fixed version to http://www.mocom.ru/Wallpapers/Pictures ... lpaper.zip and to my homepage http://axofiber.no-ip.org/projects/worl ... per.en.htm

Fllowing resolutions are now supported: 800x600, 1024x768, 1152x864, 1280x1024, 1400x1050, 1680x1050, 1600x1200.
Шf you have widescreen flat panel with 1680x1050 resolution, please, test it and describe the result in a few lines.

BaldEagle, internal clocks processed in 24h format, so sunlight trace should be displayed properly. I've added automatic locale detection which based on "navigator.userLanguage" property. This method helps to convert time representation on screen (I set "en" locale by default)

City's name localization is implemented as follows:

Code: Select all

  Config.Locale         = navigator.userLanguage;

  // Default locale is set to "en"
  if ( Config.Locale != 'en' && Config.Locale != /* ... */  && Config.Locale != 'ru' )
    Config.Locale = 'en';
  City['en'] = new Array ( 'San Francisco', 'New York', 'Buenos Aires', 'London', 'Moscow', 'Peking', 'Tokyo', 'Sydney' );
  City['ru'] = new Array ( 'Сан-Франциско', 'Нью-Йорк', 'Буэнос-Айрес', 'Лондон', 'Москва', 'Пекин',  'Токио',' Сидней' );
  City['/* ... */ '] = new Array ( /* ... */
So, to add new translations one have to add new line, somewhat like: City["<locale>"] = new Array ( ... );

Time conversion from 24h to 12h is implemented as follows:

Code: Select all

function convertLocalTime ( hours, minutes )
{
  if ( Config.Locale == 'ru' )
    return hours + ":" + minutes;
  else
  {
    ampm = 12 < hours ? " PM" : " AM";
    hours = ( hours + 11 ) % 12 + 1;
    return hours + ":" + minutes + ampm;
  }
}

Wiz
Junior Member
Junior Member
Posts: 474
Joined: Sat May 13, 2006 6:07 am
Location: Norway

#41 Post by Wiz » Sat Mar 10, 2007 4:26 pm

Atomic Max, i created a version where you can choose between 24h and 12h. In addition i added the possibility for timezones that might not add up with hours (like GMT+5.30). If you want it to develop further, look at the code or whatever then let me know and i could send it to your mail address or upload somewhere.

I would recommend that you add the option to choose language and 24h/12h as to separate options though since some might want English and at the same time use 24h clock.

I don't use it and just played with it for fun, but if you want to make it better i got a couple of other suggestions. One would be to customize daylight saving better since not all locations change to daylight saving at the same date.
The other suggestion might be a bit harder though. The sunlight trace is actually not very accurate. Like i live in Norway and some places in Norway it's daylight 24 hours a day during summer and dark outside 24 hours a day at winter time. This is not shown corretly in the worldtime wallpaper.

Atomic Max
Posts: 11
Joined: Sat Mar 10, 2007 1:59 am
Contact:

#42 Post by Atomic Max » Sat Mar 10, 2007 6:15 pm

Wiz wrote:Atomic Max, i created a version where you can choose between 24h and 12h. In addition i added the possibility for timezones that might not add up with hours (like GMT+5.30). If you want it to develop further, look at the code or whatever then let me know and i could send it to your mail address or upload somewhere.
Ok, if it's possible send me your solution to axofiber@gmail.com
Wiz wrote: I would recommend that you add the option to choose language and 24h/12h as to separate options though since some might want English and at the same time use 24h clock.
I have no idea but to let the user to change some values in the script or to prepare separate versions for download beforehand. If automation doesn't meet custom options than user should tune up a script himself.
Wiz wrote:I don't use it and just played with it for fun, but if you want to make it better i got a couple of other suggestions. One would be to customize daylight saving better since not all locations change to daylight saving at the same date.
Yes, it's very important problem. I'm currently working on it. Moreover, I have some misunderstanding in TimeZone theory (trying to eliminate my ignorance). It seems to work improperly after daylight saving time shift.
Wiz wrote:The other suggestion might be a bit harder though. The sunlight trace is actually not very accurate. Like i live in Norway and some places in Norway it's daylight 24 hours a day during summer and dark outside 24 hours a day at winter time. This is not shown corretly in the worldtime wallpaper.
Do you propose to make daylight marker curvy, looking like more natural sun trace? In this case we should take into account the tilt of the terrestrial axis.

joester
Senior Member
Senior Member
Posts: 562
Joined: Tue Apr 04, 2006 3:19 pm
Location: Vestal, NY

#43 Post by joester » Sun Mar 11, 2007 12:17 am

Not to make things more difficult, but this is all way over my head anyways.

What if the map was rounded like the earth (3D) with the option of a "sun's view" or "stationary orbit" over a chosen location?

It would be a processor hog, but a really cool one.
Common sense to some of us is unfortunately the higher education others strive to attain.

csioucs
Sophomore Member
Posts: 129
Joined: Thu Mar 09, 2006 5:27 pm
Location: Romania, EU

#44 Post by csioucs » Sun Mar 11, 2007 2:16 am

Why wouldn't some of you that also posted some solutions also posted on rapidshare ?
current: working on FHD T420s, Asus Vivotab Note 8
Almost retired: X61T. Watching: X301 (wife's). Retired: T60p.
Former:T60, (X31), T30, 380E

Atomic Max
Posts: 11
Joined: Sat Mar 10, 2007 1:59 am
Contact:

#45 Post by Atomic Max » Sun Mar 11, 2007 2:37 am

joester, I think it's already realized in Flash technology. I saw cool Flash screen saver and it was looking like orbital view of the Earth surface rotating according to the current local time. But JavaScript doesn't have good 3D visual capabilities to reder such dynamic scene.

P.S. Look at that Márton Anka's beauty: http://www.codefromthe70s.org/desktopearth_dl.asp. I think I should transform linear form of my daylight marker to more natural. Linear form is just a reflection of a midday line marker which is less informative in case of polar night or polar day (as Wiz said).
Last edited by Atomic Max on Sun Mar 11, 2007 5:47 am, edited 2 times in total.

joester
Senior Member
Senior Member
Posts: 562
Joined: Tue Apr 04, 2006 3:19 pm
Location: Vestal, NY

#46 Post by joester » Sun Mar 11, 2007 3:13 am

I see the version I have doesn't do Daylight Savings Time....
Common sense to some of us is unfortunately the higher education others strive to attain.

Wiz
Junior Member
Junior Member
Posts: 474
Joined: Sat May 13, 2006 6:07 am
Location: Norway

#47 Post by Wiz » Sun Mar 11, 2007 3:52 pm

Atomic Max wrote:Ok, if it's possible send me your solution to axofiber@gmail.com
I tried to send you the zip file and got this in return:

SMTP error from remote mail server after end of data:
host gmail-smtp-in.l.google.com [72.14.247.27]:
552 5.7.0 Illegal Attachment 7si5437049agc

Seems like the mail server does not accept zip files or maybe it's the html files inside the zip file that was rejected.

Wiz
Junior Member
Junior Member
Posts: 474
Joined: Sat May 13, 2006 6:07 am
Location: Norway

#48 Post by Wiz » Sun Mar 11, 2007 3:57 pm

Atomic Max wrote:
Wiz wrote:
Yes I guess that would make it more accurate, but could be some work to make that change.

bin.dong
Sophomore Member
Posts: 156
Joined: Fri May 05, 2006 9:51 pm
Location: Alberta, Canada

#49 Post by bin.dong » Wed Mar 21, 2007 12:51 am

Wow. It works now but my desktop icons don't seem like have drop shadows anymore. Anyone knows how to get those icons drop shadows back?


Thanks
Retired: X30 | X31 | X61 Tablet | T23 | T42 | T42p (2373-Q2U & 2373-Q1U) | T43P

Now: WUXGA T61p, 2.6Ghz 800Mhz, 4GB Ram, 7K200, 9 Cell Battery, Vista Ultimate X64

ambientscape
Junior Member
Junior Member
Posts: 411
Joined: Sat Jan 01, 2005 1:19 pm
Location: Petronas Twin Tower
Contact:

#50 Post by ambientscape » Wed Mar 21, 2007 10:45 am

Have the daylight saving been corrected? My country doesn't run daylight saving. However, since all the other country had been syncronize with the time from my computer, the daylight saving time in the UK or the U.S doesn't work.

Perhaps....Bro. Wiz or Atomic Max could fix this prob.... :lol:
-Thinkpad T23 1.2Ghz (2647-4RG) with Docking Station (2631)
-512MB RAM
-60GB Western Digital HDD
-3Com X-Jack Wireless A/B/G
-Imation External Combo DVD/CDRW
-Windows XP Pro SP2
-External 160GB Maxtor HDD

Wiz
Junior Member
Junior Member
Posts: 474
Joined: Sat May 13, 2006 6:07 am
Location: Norway

#51 Post by Wiz » Wed Mar 21, 2007 11:03 am

ambientscape wrote:Have the daylight saving been corrected? My country doesn't run daylight saving. However, since all the other country had been syncronize with the time from my computer, the daylight saving time in the UK or the U.S doesn't work. Perhaps....Bro. Wiz or Atomic Max could fix this prob.... :lol:
I'm not sure if i understand. Are you saying that daylight saving work fine for every location except US and UK? Didn't the US change the date where they change back to summertime? If that is correct i'm pretty sure that is not updated in the worldtime wallpaper you are using. Mine seems to work fine for every location except US because they changed the date where they go back to summertime.

ambientscape
Junior Member
Junior Member
Posts: 411
Joined: Sat Jan 01, 2005 1:19 pm
Location: Petronas Twin Tower
Contact:

#52 Post by ambientscape » Wed Mar 21, 2007 11:54 am

Wiz wrote:
ambientscape wrote:Have the daylight saving been corrected? My country doesn't run daylight saving. However, since all the other country had been syncronize with the time from my computer, the daylight saving time in the UK or the U.S doesn't work. Perhaps....Bro. Wiz or Atomic Max could fix this prob.... :lol:
I'm not sure if i understand. Are you saying that daylight saving work fine for every location except US and UK? Didn't the US change the date where they change back to summertime? If that is correct i'm pretty sure that is not updated in the worldtime wallpaper you are using. Mine seems to work fine for every location except US because they changed the date where they go back to summertime.
I think the daylight saving time its over...am I right? Actually I was mentioning about the daylight saving thingy that actually moves the clock forward an hour. I'm not sure when will happen for the UK or the US. Since the wallpaper doesn;t support daylight saving function....it will not change automatically...I presume.
-Thinkpad T23 1.2Ghz (2647-4RG) with Docking Station (2631)
-512MB RAM
-60GB Western Digital HDD
-3Com X-Jack Wireless A/B/G
-Imation External Combo DVD/CDRW
-Windows XP Pro SP2
-External 160GB Maxtor HDD

Wiz
Junior Member
Junior Member
Posts: 474
Joined: Sat May 13, 2006 6:07 am
Location: Norway

#53 Post by Wiz » Wed Mar 21, 2007 1:43 pm

ambientscape wrote:I think the daylight saving time its over...am I right? Actually I was mentioning about the daylight saving thingy that actually moves the clock forward an hour. I'm not sure when will happen for the UK or the US. Since the wallpaper doesn;t support daylight saving function....it will not change automatically...I presume.
The daylight saving should work for all locations except for US if you got the same worldtime wallpaper as i got. You can compare the time of each location with this site: http://www.timeanddate.com/worldclock/full.html
You should find them all to be correct except US locations. If i'm not wrong i think the daylight saving should be over on 25th of March for most locations in europe. After that date the US locations should be correct as well.

harpyeagle
Posts: 18
Joined: Wed Feb 21, 2007 9:42 am
Location: Raleigh, NC

Any idea how to get the x/y co-ordinates for cities

#54 Post by harpyeagle » Fri Mar 30, 2007 10:38 pm

This forum is just awsome and a fantastic resource for people like me.

I am trying to add new cities and not sure how to come up with the x/y co-ordinates. I know there was some discussions to get it from the map. But i am lost. I would really really appreciate if someone can help. I am also looking for the code to implement the 5.5/4.5 decimal time zones. Atomicmax - Can you email me the code if you don't mind.

Thanks a lot for your help!

bdoviack
Freshman Member
Posts: 55
Joined: Mon Jan 31, 2005 5:03 am

#55 Post by bdoviack » Sat Mar 31, 2007 3:38 pm

Check out this Wallpaper as well. Should have everything you need:

http://www.carefile.com/WorldClock/

It's a screensaver and a wallpaper

Atomic Max
Posts: 11
Joined: Sat Mar 10, 2007 1:59 am
Contact:

Re: Any idea how to get the x/y co-ordinates for cities

#56 Post by Atomic Max » Fri Apr 06, 2007 11:11 am

harpyeagle wrote:I am also looking for the code to implement the 5.5/4.5 decimal time zones. Atomicmax - Can you email me the code if you don't mind.
Ok, I'm testing now the following changes to implement a fractional
GMT offsets support:

Code: Select all

  var now        = new Date();
  var GMThours   = now.getUTCHours () + 1;
get minutes of the universal time

Code: Select all

  var GMTminutes = now.getUTCMinutes ();

Code: Select all

  // Set LocalTime indicator
  var CurrentTimeZoneOffset = (-now.getTimezoneOffset() / 60) - 1;

  // Set Clocks
  for ( i = 0; i < Clocks.length; ++i )
  {
prevent fractional values in hours:

Code: Select all

    Clocks[i].Hours = GMThours + Math.floor ( Clocks[i].GMToOffset + GMTminutes / 60  );

Code: Select all

    if ( Clocks[i].Hours < 0 ) Clocks[i].Hours += 24;
    Clocks[i].Hours  %= 24;
    GMfracOffset      = ( Clocks[i].GMToOffset - Math.floor ( Clocks[i].GMToOffset ) ) * 60;
correcting minutes:

Code: Select all

    Clocks[i].Minutes = ( GMTminutes + GMfracOffset ) % 60;
...rest of the showTime () function code:

Code: Select all

    var Clock = document.getElementById ( 'Clock' + i );
    Clock.innerHTML = "<b>" + Clocks[i].City + "<br>" + "&nbsp;&nbsp;&nbsp;&nbsp;" + convertLocalTime ( Clocks[i].Hours, Clocks[i].Minutes ) + "&nbsp;" + "</b>";
    if ( Clocks[i].GMToOffset == CurrentTimeZoneOffset )
      Clock.style.color = "#FF3333";
  }
P.S. Latest beta is available at http://axofiber.no-ip.org/projects/worl ... per.en.htm or here, also you can test demo. New features: city data is moved into separate file, new dot for Paris, 3 interface languages is available (English, Russian, French).

Alik
Posts: 6
Joined: Mon Apr 02, 2007 9:58 am
Location: Brno, Czech Republic

emea wallpaper

#57 Post by Alik » Mon Apr 23, 2007 3:53 am

Hi guys, I'm looking for this IBM emea wallpaper, but in good quality and bigger resolution. Does anyone have it ? Thanks a lot.

http://www.mocom.ru/Wallpapers/Pictures ... ea_map.jpg

Wiz
Junior Member
Junior Member
Posts: 474
Joined: Sat May 13, 2006 6:07 am
Location: Norway

Re: emea wallpaper

#58 Post by Wiz » Mon Apr 23, 2007 9:47 am

Alik wrote:Hi guys, I'm looking for this IBM emea wallpaper, but in good quality and bigger resolution. Does anyone have it ? Thanks a lot.
I guess your post is a bit off topic, but you might find it here:
http://www.mocom.ru/Wallpapers/ibm.htm

rleo25
Junior Member
Junior Member
Posts: 334
Joined: Tue Nov 15, 2005 10:45 am
Location: Santander, Columbia

#59 Post by rleo25 » Mon May 07, 2007 8:55 am

Does anybody know how to set the Thinkpad-Thinkcentre logo on the upper right corner of the screen as in the original desktop? This feature is missing in my worldclock desktop and it´s a pity... i love this brand...

rleo25
Junior Member
Junior Member
Posts: 334
Joined: Tue Nov 15, 2005 10:45 am
Location: Santander, Columbia

#60 Post by rleo25 » Mon May 07, 2007 9:51 am

Another tip please... I added a new city and lost Sydney, where is it the control to let enter more than 8 cities?

Post Reply
  • Similar Topics
    Replies
    Views
    Last post

Return to “GENERAL ThinkPad News/Comments & Questions”

Who is online

Users browsing this forum: Dekks and 2 guests