| 1. |
Solve : naking A DEFCON javascript? |
|
Answer» hi im having problems making a defcon indicator and i was wondering if any one can help make it
var Alliance = new Array (2) Alliance[0] = "" Alliance[1] = " - With [the unforgiven]"; //////////dont worry about this part onwards////////// // Set the clock's font face: var myfont_face = "Verdana"; // Set the clock's font size (in point): var myfont_size = "10"; // Set the clock's font color: var myfont_color = "#1b90ff"; // Set the clock's background color: var myback_color = "transparent"; // Set the text to display before the clock: var mypre_text = ""; // Set the width of the clock (in pixels): var mywidth = 300; // Display the time in 24 or 12 hour time? // 0 = 24, 1 = 12 var my12_hour = 1; // How often do you want the clock updated? // 0 = Never, 1 = Every Second, 2 = Every Minute // If you pick 0 or 2, the seconds will not be displayed var myupdate = 1; // Display the date? // 0 = No, 1 = Yes var DisplayDate = 1; /////////////// END CONFIGURATION ///////////////////////// /////////////////////////////////////////////////////////// // Browser detect code var ie4=document.all var ns4=document.layers var ns6=document.getElementById&&!document.all // Global varibale definitions: var dn = ""; var mn = "th"; var old = ""; // This array controls how often the clock is updated, // based on your selection in the configuration. var ClockUpdate = new Array(3); ClockUpdate[0] = 0; ClockUpdate[1] = 1000; ClockUpdate[2] = 60000; // For Version 4+ browsers, write the appropriate HTML to the // page for the clock, otherwise, attempt to write a static // date to the page. if (ie4||ns6) { document.write(''); } else if (document.layers) { document.write(''); } else { old = "true"; show_clock(); } //////////////////if functions to change color of font acordingly////////////////////// if (day == 0) { myfont_color = "#00ff00"; } else if (day == 1) { myfont_color = "#82ff00"; } else if (day == 2) { myfont_color = "#ffff00"; } else if (day == 3) { myfont_color = "#ff7d00"; } else if (day == 4) { myfont_color = "#ff0000"; } // The main part of the script: function show_clock() { if (old == "die") { return; } //show clock in NS 4 if (ns4) document.ClockPosNS.visibility="show" // This is the actual HTML of the clock. If you're going to play around // with this, be careful to keep all your quotations in tact. myclock = ''; myclock += '';; myclock += DaysOfWeek[day]; myclock += Alliance[allianceactive]; myclock += ''; if (old == "true") { document.write(myclock); old = "die"; return; } // Write the clock to the layer: if (ns4) { clockpos = document.ClockPosNS; liveclock = clockpos.document.LiveClockNS; liveclock.document.write(myclock); liveclock.document.close(); } else if (ie4) { LiveClockIE.innerHTML = myclock; } else if (ns6){ document.getElementById("LiveClockIE").innerHTML = myclock; } if (myupdate != 0) { setTimeout("show_clock()",ClockUpdate[myupdate]); } } setTimeout("show_clock()",1000) very messy i know but this is all i need now how can i change the daysofweek and alliance variable without opening the FTP server so basicly doing it form an external source i know its very messy concidering i edited it wioth no knoledge of it what so ever lol anyway can some one help please?would i be able to make a txt file and type like DEFCON 5 in it and the script take the text from that document ind save it as a variable?TBH, I'd say you'd be better off going to a webmaster-only forum to solve an issue such as this. It will have more helpers, some of which might have dealt with this "DEFCON" before.I didn't post because I haven't got a bloody clue what he's trying to do. I thought I almost understood what he wanted, until he posted the live clock code.Same here actually, exactly the same. |
|