Dror Golan - 2007-10-01 08:06:09 -
In reply to message 1 from Bob Squires
Hi Bob,
There are two options:
1. Change the default configuration at the constants section of the class
e.g:
define('FF_OPACITY_LEVEL',0.7); for Firefox
define('IE_OPACITY_LEVEL',70); for Explorer
2. Change the associative array MessageStyleArr and apply it to the class
e.g: MessageStyleArr["filter"] = "alpha(opacity=70)" for IE
MessageStyleArr["moz-opacity"] = 0.7 for FF
MessageStyleArr["opacity"] = 0.7
the last two examples actually have the same functionality.
I will soon revert the example files to reflect and illustrate those changes.
Dror.