Hello,
I found that false wasn't being set when using the dictionary
object.
In dynlayer_base.js: DynLayer()
-this.visible = (args.visible||true);
+this.visible = (args.visible==false)?false:true;
-this._textSelectable = (args.textSelectable||true);
+this._textSelectable = (args.textSelectable==false)?false:true;
-
Kevin
|