Hey guys,<div><br></div><div>I am using the Geoext for the first time and was going through the tutorials. On this tutorial, <a href="http://geoext.org/tutorials/control-button-tutorial.html">http://geoext.org/tutorials/control-button-tutorial.html</a>, in the &quot;There can only be one&quot; section, the sample code stating how to use the Toggle button,</div>

<div><br></div><div><div>var length = new OpenLayers.Control.Measure(OpenLayers.Handler.Path, {</div><div>    eventListeners: {</div><div>        measure: function(evt) {</div><div>            alert(&quot;The length was &quot; + evt.measure + evt.units);</div>

<div>        }</div><div>    }</div><div>});</div><div><br></div><div>var area = new OpenLayers.Control.Measure(OpenLayers.Handler.Polygon, {</div><div>    eventListeners: {</div><div>        measure: function(evt) {</div>

<div>            alert(&quot;The area was &quot; + evt.measure + evt.units);</div><div>        }</div><div>    }</div><div>});</div><div><br></div><div>mapPanel.map.addControl(length);</div><div>mapPanel.map.addControl(area);</div>

<div><br></div><div>var toggleGroup = &quot;measure controls&quot;;</div><div><br></div><div>var lengthButton = new Ext.Button({</div><div>    text: &#39;Measure Length&#39;,</div><div>    enableToggle: true,</div><div>    toggleGroup: toggleGroup,</div>

<div>    handler: function(toggled){</div><div>        if (toggled) {</div><div>            length.activate();</div><div>        } else {</div><div>            length.deactivate();</div><div>        }</div><div>    }</div>

<div>});</div><div><br></div><div>var area = new Ext.Button({</div><div>    text: &#39;Measure Area&#39;,</div><div>    enableToggle: true,</div><div>    toggleGroup: toggleGroup,</div><div>    handler: function(toggled){</div>

<div>        if (toggled) {</div><div>            area.activate();</div><div>        } else {</div><div>            area.deactivate();</div><div>        }</div><div>    }</div><div>});</div><div><br></div><div>We are using the variable &#39;area&#39; and &#39;length&#39; for the OpenLayers Control as well as Ext Button. If we use it like this in plain Javascript, would it not result in an error, as the variable names are meant to be unique, right??</div>

<div><br></div>-- <br>Thanks &amp; Regards<div>Smaran Harihar</div><br>
</div>