B
Barry
I can set the opacity for a layer using a script (below):
function setOpacity(value) {
layer1.style.opacity = value;
layer1.style.filter = 'alpha(opacity=' + value + ')';
}
How can I do it using Frontpages Behaviours? i.e what's the syntax for the
properties and value options when using the Add behaviours dialogue.
PS - I need it to work on as many browsers as possible, which is why the
script above has 2 variants.
function setOpacity(value) {
layer1.style.opacity = value;
layer1.style.filter = 'alpha(opacity=' + value + ')';
}
How can I do it using Frontpages Behaviours? i.e what's the syntax for the
properties and value options when using the Add behaviours dialogue.
PS - I need it to work on as many browsers as possible, which is why the
script above has 2 variants.