chetFinster
Programmer
Here's the problem:
A program I use creates the DIV tags dynamically, but doesn't add a 'filters' attribute, which I need to use to adjust the alpha of objects on the fly (trans in and out).
The following is the last line as the program writes it:
**** this.div += ' border=0 >'+divEnd+'\n' ***
I comment it out and replace it with:
*** this.div += ' border=0 style="filter:alpha(opacity=100);z-index:60" class = "drag">'+divEnd+'\n' ***
(ignore all asterisks)
My replacement works fine, but I'd rather not have to crack open the code. I'd rather add the filter attribute dynamically.
Struggled with this for a while so I'm asking for some help here (I've tried *** thisVariable.style += "filter:alpha(opacity=100)" *** but the problem seems to be that 'style' hasn't been declared in the DIV tag)
Thanks in advance
Peter
A program I use creates the DIV tags dynamically, but doesn't add a 'filters' attribute, which I need to use to adjust the alpha of objects on the fly (trans in and out).
The following is the last line as the program writes it:
**** this.div += ' border=0 >'+divEnd+'\n' ***
I comment it out and replace it with:
*** this.div += ' border=0 style="filter:alpha(opacity=100);z-index:60" class = "drag">'+divEnd+'\n' ***
(ignore all asterisks)
My replacement works fine, but I'd rather not have to crack open the code. I'd rather add the filter attribute dynamically.
Struggled with this for a while so I'm asking for some help here (I've tried *** thisVariable.style += "filter:alpha(opacity=100)" *** but the problem seems to be that 'style' hasn't been declared in the DIV tag)
Thanks in advance
Peter