Quote:
Originally Posted by o0Hubba0o
That's what we've been discussing for two pages now heh. I've rebuilt and updated counters and all that still not working. I opened my javascript console and looked at some of the errors, first the error, the where it pointed me too, the line with error in red:
Syntax Error:
function RainbowSpan(span, hue, deg, brt, spd, hspd) {
this.deg=(deg==null?360:Math.abs(deg));
this.hue=(hue==null?0:Math.abs(hue)%%360);
---------------------------------------|
this.hspd=(hspd==null?3:Math.abs(hspd)%%360);
this.length=span.firstChild.data.length;
this.span=span;
this.speed=(spd==null?50:Math.abs(spd));
this.hInc=this.deg/this.length;
this.brt=(brt==null?255:Math.abs(brt)%%256);
this.timer=null;
toSpans(span);
this.moveRainbow();
Though I'm not using the rainbow one thought I'd mention this.
|
Yes, that error has been appearing, though it's odd, because the phrase in which that function is stored only has one "%" symbol... for some reason, on output, it rewrites it to have 2 "%"'s, but there's also an "innerHTML" error happening within the javascript that gives the variable "d" no properties...
Quote:
Originally Posted by TTG
Installed and working fine .. thanks for the hack AlchemyX
|
You didn't have any errors at all?
I am coming to believe that some of my javascript variables are interfering with, or being clobbered by another modification that some of you might have installed. It worked for me, worked for TTG, ddn't work for hubba, partially worked for enforce...
:-? I'm confused, but I'm atill working on it...