![]() |
![]() |
![]() |
![]() |
|
#11
|
||||
|
||||
|
Quote:
Instead of a hot girl, I've got a picture of my daughter instead .... |
|
#12
|
|||
|
|||
|
Well, until I switched it to Miss Glau, my wallpaper would swap between these pictures I took near my dorm in Santa Cruz...
__________________
Just because I'm paranoid doesn't mean that no one's watching. Quote:
|
|
#13
|
||||
|
||||
|
I like that second picture of the walking trail.
__________________
Quote:
|
|
#14
|
||||
|
||||
|
i also like that pic, reminds me of one of those inspirational posters.
|
|
#15
|
|||
|
|||
|
I used a SUFI cursor too
![]() |
|
#16
|
||||
|
||||
|
the laptop:
![]() and the desktop: ![]() the second desktop is just the defualt desktop picture for windows.
__________________
"This thread deserves JJs stamp of retarded approval. " -jimjohnson, Board JackAss [04:21] JimJohnson: I like the cock! "Wow bumped a thread from July AND started it off by insulting each other. Did we all roll Necromancers today? Thread locked." -Kodilynn - Moderator [22:12] Madelyn_Work: !ghostkill [22:12] *** Madelyn_Work has been kicked from #MMOBugs by Kodilynn: BLOW MONKEY NUTS BUTT HOLE |
|
#17
|
||||
|
||||
|
Quote:
|
|
#18
|
|||
|
|||
|
Mine is a photoshopped 4G eclipse (I drive a 2006 GT Special Edition).
kukmuk |
|
#19
|
|||
|
|||
|
Alright, this is the HTML file that I use for the background...caution, I was teaching myself HTML and javascript on the fly as I wrote this, so it's kinda ugly.
Code:
<html>
<head><title></title></head>
<body onLoad="countdownloop()" BACKGROUND="s-g2.jpg">
<form name="Movies">
<TABLE class="form" ALIGN=RIGHT BGCOLOR=darkcyan>
<TR><TD>Movies</TD></TR>
<TR><TD><input type="text" size="40"></TD></TR>
<TR><TD><input type="text" size="40"></TD></TR>
<TR><TD><input type="text" size="40"></TD></TR>
<TR><TD><input type="text" size="40"></TD></TR>
<TR><TD><input type="text" size="40"></TD></TR>
<TR><TD><input type="text" size="40"></TD></TR>
<TR><TD><input type="text" size="40"></TD></TR>
<TR><TD><input type="text" size="40"></TD></TR>
</TABLE>
</form>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<form name="Games">
<TABLE class="form" ALIGN=RIGHT BGCOLOR=darkcyan>
<TR><TD>Games</TD></TR>
<TR><TD><input type="text" size="40"></TD></TR>
<TR><TD><input type="text" size="40"></TD></TR>
<TR><TD><input type="text" size="40"></TD></TR>
<TR><TD><input type="text" size="40"></TD></TR>
<TR><TD><input type="text" size="40"></TD></TR>
<TR><TD><input type="text" size="40"></TD></TR>
</TABLE>
</form>
<br><br><br><br><br><br><br><br><br><br><br>
<form name="TV">
<TABLE class="form" ALIGN=RIGHT BGCOLOR=darkcyan>
<TR><TD>TV</TD></TR>
<TR><TD><input type="text" size="40"></TD></TR>
<TR><TD><input type="text" size="40"></TD></TR>
<TR><TD><input type="text" size="40"></TD></TR>
<TR><TD><input type="text" size="40"></TD></TR>
<TR><TD><input type="text" size="40"></TD></TR>
</TABLE>
</form>
<script TYPE="text/javascript">
function countdownloop() {
//format: var array = ["String", month, date, year]
var IronMan = ["Iron Man",5,2,2008];
var CB = ["Charlie Bartlett DVD",6,24,2008];
var Wanted = ["Wanted",6,27,2008];
var TDK = ["The Dark Knight",7,18,2008];
var Pineapple = ["Pineapple Express",8,6,2008];
var TropicThunder = ["Tropic Thunder",8,13,2008];
var SarahMarshall = ["Forgetting Sarah Marshall",9,30,2008];
var Watchmen = ["Watchmen",3,6,2009];
var movies = [IronMan,CB,Wanted,TDK,Pineapple,TropicThunder,SarahMarshall,Watchmen];
var Spore = ["Spore",9,4,2008];
var SWFU = ["Force Unleashed",9,16,2008];
var DS = ["Dead Space",10,20,2008];
var Fable2 = ["Fable 2",10,31,2008];
var GoW2 = ["Gears of War 2",11,7,2008];
var PoP = ["Prince of Persia",12,1,2008];
var games = [Spore,SWFU,DS,Fable2,GoW2,PoP];
var Fringe = ["Fringe",9,9,2008];
var Heroes = ["Heroes",9,22,2008];
var Dexter = ["Dexter",9,28,2008];
var Life = ["Life",9,29,2008];
var BSGLost = ["BSG/Lost",1,15,2009]
var tv = [Fringe,Heroes,Dexter,Life,BSGLost];
var masterArray = [movies,games,tv];
for(itor = 0; itor<masterArray.length; ++itor) doprintarray(itor,masterArray[itor]);
setTimeout("countdownloop()",30000);
}
function doprintarray(formnum,inArray) {
for(x = 0; x<inArray.length; ++x) {
var checksign = "-";
var y = countdown(inArray[x]);
if(y[1] == 1) checksign = "+";
//ele[x+1] to counter for title in table
document.forms[formnum].elements[x].value = y[0]+": "+checksign+y[2]+"d "+y[3]+"h "+y[4]+"m";
}
}
function getfontstr(inArray) {
var fontcolor;
if(inArray[1] == 0) fontcolor = "red";
else if(inArray[2] == 0) fontcolor = "yellow";
else fontcolor = "green";
return fontcolor;
}
function countdown(inArray){
var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
theyear=inArray[3];themonth=inArray[1];theday=inArray[2]; inStr = inArray[0];
var today=new Date();
var todayy=today.getYear();
if (todayy < 1000) todayy+=1900;
var cdsign= 0;
var todaym=today.getMonth();
var todayd=today.getDate();
var todayh=today.getHours();
var todaymin=today.getMinutes();
var todaysec=today.getSeconds();
var todaystring=montharray[todaym]+" "+todayd+", "+todayy+" "+todayh+":"+todaymin+":"+todaysec;
futurestring=montharray[themonth-1]+" "+theday+", "+theyear;
dd=Date.parse(futurestring)-Date.parse(todaystring);
dday=Math.floor(dd/(60*60*1000*24)*1);
dhour=Math.floor((dd%(60*60*1000*24))/(60*60*1000)*1);
dmin=Math.floor(((dd%(60*60*1000*24))%(60*60*1000))/(60*1000)*1);
if(dday < 0 || dhour <0 || dmin < 0) {
cdsign= 1;
dday = Math.abs(dday);
dhour = Math.abs(dhour);
dmin = Math.abs(dmin);
}
var retArray = [inStr,cdsign,dday,dhour,dmin];
return retArray;
}
</script>
</body>
</html>
Line 3: Code:
<body onLoad="countdownloop()" BACKGROUND="s-g2.jpg"> Line 43: countdownloop() This is where all of the data is stored. The format for the variables is this: var SomeName = ["String", month, date, year] To place a particular timer in a section, you must do the following: 1) Add it to the array for that section, ie, when I created the array for the Spore video game, I had to add Spore to the games array: var games = [Spore,SWFU,DS,Fable2,GoW2,PoP]; The timers will be shown in the order that they appear in the array. 2) Each section has a table up above specifically for it. For every timer that you have in a section, you must have one of the following lines in that table, or else you will get an error about form elements being null. Code:
<TR><TD><input type="text" size="40"></TD></TR> It actually is really easy, once you get everything set up, lol. I'm sure that I could make it work better, but having made my foray into visual/UI type crap, I once again realize why I prefer programming stuff that I can't see...much easier to think about.
__________________
Just because I'm paranoid doesn't mean that no one's watching. Quote:
|
|
#20
|
||||
|
||||
|
well i'm 18 so lets be honest there's only one possible background..the self made kind. mods feel free to edit this I don't know how to post mini-images like the previous ones.
![]()
__________________
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|