| Forum Home | ||||
| Press F1 | ||||
| Thread ID: 25760 | 2002-10-11 07:15:00 | Weekend project: show us your desktop!! | Susan B (19) | Press F1 |
| Post ID | Timestamp | Content | User | ||
| 88235 | 2002-10-13 08:21:00 | What's the chances of getting copies of some of these wallpapers . i would really like copies of nzliams and babe ruths i'm a lord of the rings fan or even where they came from would be good... ?????????????????..... pleaseeeeeeeeeeeeeeeeeeeee | johnboy (217) | ||
| 88236 | 2002-10-13 08:25:00 | johnboy, If you post a Disposible email address here, there is a chance that someone might send you something... Of corse if there is no way offered of getting it to you............ |
Clueless (181) | ||
| 88237 | 2002-10-13 08:36:00 | Have a look at my profile the address is there for a while thanks... only because i do'nt know what a disposible email address is ??? sorry | johnboy (217) | ||
| 88238 | 2002-10-13 08:50:00 | >Have a look at my profile the address is there for a while thanks sorry i did look, it isn't there, it's not publicly displayed, you can see it, we can't A disposible address is something like a hotmail address that you make, use publicly, and dump after a week or 2 once the spam starts flying in |
Clueless (181) | ||
| 88239 | 2002-10-13 09:00:00 | > Hey you people with calendars on yer desktops must > even know what day it is! > I'm envious! > Technology is great . > ;) OK if you would like a calender save the following code as a * . htm file, I saved mine as "calendar . html" and put it in your C:\WINDOWS\WEB\Wallpaper folder, then go and install as wall paper <head > <title > calender</title > </head > <body text="#d00000" bgcolor="#000099" > <center > <script type="text/javascript" > greeting(); calendar(); function greeting() { document . write("<table width='400' border='0' summary='this month calender' > <tr > <td > "); var today = new Date(); var hrs = today . getHours(); document . writeln("<center > <h1 > Good "); if (hrs < 6) document . write("Morning Early bird"); else if (hrs < 12) document . write("Morning"); else if (hrs < 18) document . write("Afternoon"); else document . write("Evening"); document . writeln("!<\/h1 > "); } function montharr() { this[0] = 31; this[1] = 28; this[2] = 31; this[3] = 30; this[4] = 31; this[5] = 30; this[6] = 31; this[7] = 31; this[8] = 30; this[9] = 31; this[10]= 30; this[11]= 31; } function calendar() { var monthName = new Array(12); monthName[0]="January"; monthName[1]="February"; monthName[2]="March"; monthName[3]="April"; monthName[4]="May"; monthName[5]="June"; monthName[6]="July"; monthName[7]="August"; monthName[8]="September"; monthName[9]="October"; monthName[10]="November"; monthName[11]="December"; var today = new Date(); var thisDay; var dayExt = "th"; var monthDays = new montharr(); year = today . getYear(); if (navigator . appName =="Netscape") { year=year+1900; } thisDay = today . getDate(); if (thisDay == 1 || thisDay == 21 || thisDay == 31 ){ dayExt ="st"; } else if (thisDay == 2 || thisDay == 22 ){ dayExt = "nd"; } else if (thisDay == 3 || thisDay == 23){ dayExt = "rd"; } if (((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0)) monthDays[1] = 29; nDays = monthDays[today . getMonth()]; firstDay = today; firstDay . setDate(1); // works fine for most systems testMe = firstDay . getDate(); if (testMe == 2) firstDay . setDate(0); startDay = firstDay . getDay(); document . write("<center > <table width='250' border='0' > <tr > <th colspan=7 > <h3 > "+thisDay+dayExt); document . write(" "+monthName[today . getMonth()]+", "+year+"<\/h3 > "); document . write("<tr > <th > Sun<\/th > <th > Mon<\/th > <th > Tue<\/th > <th > Wed<\/th > <th > Thu <\/th > <th > Fri <\/th > <th > Sat<\/th > <tr > "); column = 0; for (i=0; i<startDay; i++) { document . write("<td colspan="+startDay+" > <\/td > "); i=i+(startDay-1); column=column+startDay; } for (i=1; i<=nDays; i++) { document . write("<td > <center > "); if (i<=9 && i!=thisDay) { document . write("<h4 > "+i+"<\/h4 > "); } if (i<=9 && i==thisDay) document . write("<h1 > [i]"+i+"<\/i > <\/h1 > "); if (i > 9 && i!=thisDay) document . write("<h4 > "+i+"<\/h4 > "); if (i > 9 && i == thisDay) document . write("<h1 > [i]"+i+"<\/i > <\/h1 > "); column++; document . write("<\/center > <\/td > "); if (column == 7) { document . write("<\/tr > <tr > "); column = 0; } } document . write("<td colspan=7-column > <\/td > <\/tr > <\/table > <\/center > <\/td > <\/tr > <\/table > "); } </script > </center > </body > </html > |
E.ric (351) | ||
| 88240 | 2002-10-13 09:11:00 | I noticed some people had rather conservative desktops. go here (http://www.deviantart.com/) to get some good artistic desktops. |
roofus (483) | ||
| 88241 | 2002-10-13 09:12:00 | bugger In the code every where you see a face should \ so the code might < \ / t d > (without the spaces) in place of <\/td> From Eric |
E.ric (351) | ||
| 88242 | 2002-10-13 09:14:00 | hmmmm we really need a "do not display emoticons in this post" option ;) | -=JM=- (16) | ||
| 88243 | 2002-10-13 09:15:00 | Have another look you should see it now .. i hope i forgot to click save .. remember i wanted clueless as a name | johnboy (217) | ||
| 88244 | 2002-10-13 09:35:00 | Eric, email me the code, i'll put it on a webserver for us to see seeing it won't display properly here, and with that many <\/td>'s etc it's just won't be that easy for people to use as is. pugwash@ihug.co.nz is the disposible address i use. johnboy, i'll let you have the name "Clueless" when i've done 1000 posts under the new name... it shouldn't take that long! |
Clueless (181) | ||
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | |||||