I'm trying to load a layer as an overlay and make it initially not visible
airBoss = new OpenLayers.Layer.Text( "AirBoss Locations", { location:"./airboss.txt"} , {
visibility: false, isBaseLayer: false, displayInLayerSwitcher: true});
map.addLayer(airBoss);
airBoss.setZIndex(210);
airBoss.setVisibility = false;
Using this code with or without the additional "setVisibility" line the layer always is visible. Is this a bug in the javascript of open layers or am I doing something wrong.
Thanks..
