
December 12th, 2002, 11:54 AM
|
|
Senior Citizen
|
|
Join Date: Jan 2001
Location: leftcoast
Posts: 2,019
Time spent in forums: < 1 sec
Reputation Power: 15
|
|
|
Could give this a shot...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>untitled</title>
<style type="text/css">
.artist {
font: 600 14px "comic sans ms";
color: coral;
}
</style>
<script type="text/javascript" language="JavaScript">
var IDtimer = null;
function setCell() {
var cell, artistid = 'Bob Dylan'; // top.frames[3].pick3.artistid;
if (artistid) {
if (!document.layers) {
cell = document.getElementById ? document.getElementById('readout') :
document.all ? document.all('readout') : null;
if (cell && typeof cell.innerHTML != 'undefined') cell.innerHTML = artistid;
} else {
cell = document.NSreadout.document.layers[0];
cell.document.write('<span class="artist">' + artistid + '</span>')
cell.document.close();
}
}
}
onload = function() {
IDtimer = setInterval('setCell()',5);
}
onunload = function() {
clearInterval(IDtimer);
}
</script>
</head>
<body bgcolor="black">
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td id="readout" class="artist" width="100" height="16"><ilayer id="NSreadout"><layer width="100" height="16"></layer></ilayer></td>
</tr>
</table>
</body>
</html>
Last edited by adios : December 12th, 2002 at 12:19 PM.
|