Code: Alles auswählen
var userList = {}, colorList = {};
/* Konfiguration */
// Farbenliste
colorList['Schlumpf'] = "#00FF00";
colorList['Angelsmausi'] = "#FF1493";
colorList['Micky_maus'] = "#00FF00";
colorList['klaus_mobil2007'] = "#0000ff";
colorList['DJDrago'] = "#FFFF00";
colorList['Dragocan'] = "#FF6347";
colorList['saraJana'] = "#ff00ff";
colorList['Dj_Butterfly'] = "#FFFF00";
colorList['Engelchen'] = "#0000FF";
colorList['andy77'] = "#FFFF00";
colorList['mamachu'] = "#FF1493";
colorList['scarlet'] = "#FFFF00";
colorList['Andrea'] = "#800080";
colorList['Monster'] = "#00ff00";
// Userliste
userList['Schlumpf'] = ["Schlumpf"];
userList['Andrea'] = ["Andrea"];
userList['Micky_maus'] = ["Micky_maus"];
userList['klaus_mobil2007'] = ["klaus_mobil2007"];
userList['Andrea'] = ["Andrea"];
userList['DJDrago'] = ["DJDrago"];
userList['Dragocan'] = ["Dragocan"];
userList['saraJana'] = ["saraJana"];
userList['Monster'] = ["Monster"];
userList['Dj_Butterfly'] = ["Dj_Butterfly"];
userList['Engelchen'] = ["Engelchen"];
userList['mamachu'] = ["mamachu"];
userList['scarlet'] = ["scarlet"];
userList['Angelsmausi'] = ["Angelsmausi"];
/*****************/
function olColors() {
var currentColor, currentEntry;
for (var i in colorList) {
currentColor = colorList[i];
for (var j = 0; j < userList[i].length; j++) {
currentEntry = parent.rightFrame.document.getElementById(userList[i][j]);
if (currentEntry) {
currentEntry.style.color = currentColor;
}
}
}
}
window.setInterval("olColors();", 1000);
Code: Alles auswählen
<script type="text/javascript" src="/grundscripts.js"></script>
Mitglieder in diesem Forum: Ahrefs [Bot] und 1 Gast