<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">

<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii">
<meta name=Generator content="Microsoft Word 12 (filtered medium)">
<!--[if !mso]>
<style>
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style>
<![endif]-->
<style>
<!--
 /* Font Definitions */
 @font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:"Lucida Handwriting";
        panose-1:3 1 1 1 1 1 1 1 1 1;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin-top:6.0pt;
        margin-right:0cm;
        margin-bottom:6.0pt;
        margin-left:0cm;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;}
.MsoPapDefault
        {mso-style-type:export-only;
        margin-top:6.0pt;
        margin-right:0cm;
        margin-bottom:6.0pt;
        margin-left:0cm;}
@page Section1
        {size:612.0pt 792.0pt;
        margin:72.0pt 72.0pt 72.0pt 72.0pt;}
div.Section1
        {page:Section1;}
-->
</style>
<!--[if gte mso 9]><xml>
 <o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
 <o:shapelayout v:ext="edit">
  <o:idmap v:ext="edit" data="1" />
 </o:shapelayout></xml><![endif]-->
</head>

<body lang=EN-AU link=blue vlink=purple>

<div class=Section1>

<p class=MsoNormal>List,<o:p></o:p></p>

<p class=MsoNormal>There are a few questions about right mouse support in OL2.7
I have just installed a patch which corrects an issue with the dblrightclick
event that was causing some issues when trying to capture right mouse events. &nbsp;The
ticket is <a href="http://trac.openlayers.org/ticket/1995">http://trac.openlayers.org/ticket/1995</a>
- So if you want to use right mouse events then install this patch and see the
example cod below which works as expected:<o:p></o:p></p>

<p class=MsoNormal><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='margin:0cm;margin-bottom:.0001pt;text-autospace:none'><span
style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;&nbsp;&nbsp; OpenLayers.Control.Click
= OpenLayers.Class(OpenLayers.Control, { <span style='color:#A31515'>'handleRightClicks'</span>:
<span style='color:blue'>true</span>,<o:p></o:p></span></p>

<p class=MsoNormal style='margin:0cm;margin-bottom:.0001pt;text-autospace:none'><span
style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
defaultHandlerOptions: { <span style='color:#A31515'>'single'</span>: <span
style='color:blue'>true</span>, <span style='color:#A31515'>'double'</span>: <span
style='color:blue'>true</span>, <span style='color:#A31515'>'stopSingle'</span>:
<span style='color:blue'>false</span>, <span style='color:#A31515'>'stopDouble'</span>:
<span style='color:blue'>false</span> },<o:p></o:p></span></p>

<p class=MsoNormal style='margin:0cm;margin-bottom:.0001pt;text-autospace:none'><span
style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; initialize: <span
style='color:blue'>function</span>(options) {<o:p></o:p></span></p>

<p class=MsoNormal style='margin:0cm;margin-bottom:.0001pt;text-autospace:none'><span
style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span
style='color:blue'>this</span>.handlerOptions = OpenLayers.Util.extend({}, <span
style='color:blue'>this</span>.defaultHandlerOptions);<o:p></o:p></span></p>

<p class=MsoNormal style='margin:0cm;margin-bottom:.0001pt;text-autospace:none'><span
style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
OpenLayers.Control.prototype.initialize.apply(<span style='color:blue'>this</span>,
arguments);<o:p></o:p></span></p>

<p class=MsoNormal style='margin:0cm;margin-bottom:.0001pt;text-autospace:none'><span
style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span
style='color:blue'>this</span>.handler = <span style='color:blue'>new</span>
OpenLayers.Handler.Click(<span style='color:blue'>this</span>, { <span
style='color:#A31515'>'rightclick'</span>: <span style='color:blue'>this</span>.righttrigger
}, <span style='color:blue'>this</span>.handlerOptions);<o:p></o:p></span></p>

<p class=MsoNormal style='margin:0cm;margin-bottom:.0001pt;text-autospace:none'><span
style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>

<p class=MsoNormal style='margin:0cm;margin-bottom:.0001pt;text-autospace:none'><span
style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; righttrigger: <span
style='color:blue'>function</span>(e) {<o:p></o:p></span></p>

<p class=MsoNormal style='margin:0cm;margin-bottom:.0001pt;text-autospace:none'><span
style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; alert(<span
style='color:#A31515'>'Right click'</span>);<o:p></o:p></span></p>

<p class=MsoNormal style='margin:0cm;margin-bottom:.0001pt;text-autospace:none'><span
style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;
});<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>Note
that the Control must be configured to handleRightClicks and that the double
action in the defaultHandlerOptions must be true as the single right mouse click
event is triggered only if the code determines that it is not a double click (a
pain but required as the browsers do not handle the right mouse well). I have
used this code in the same program as the navigation control as below: <o:p></o:p></span></p>

<p class=MsoNormal style='margin:0cm;margin-bottom:.0001pt;text-autospace:none'><span
style='font-size:10.0pt;font-family:"Courier New"'>Map.addControl(<span
style='color:blue'>new</span> OpenLayers.Control.Navigation({ <span
style='color:#A31515'>'zoomWheelEnabled'</span>: <span style='color:blue'>false</span>,
<span style='color:#A31515'>'handleRightClicks'</span>: <span style='color:
blue'>true</span> }));<o:p></o:p></span></p>

<p class=MsoNormal>However you must install the patch first or wait till it is
included and released. Good luck.<o:p></o:p></p>

<p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'><span
style='font-size:10.0pt;font-family:"Arial","sans-serif";color:#1F497D'>Regards</span><u><span
style='font-size:10.0pt;color:#1F497D'><br>
</span></u><span style='font-size:16.0pt;font-family:"Lucida Handwriting";
color:#1F497D'>David Martin</span><span style='font-size:10.0pt;font-family:
"Lucida Handwriting";color:#1F497D'><br>
</span><span style='font-size:10.0pt;font-family:"Arial","sans-serif";
color:#1F497D'>Managing Director<br>
I.T. Beyond Pty Ltd</span><span style='font-size:12.0pt;font-family:"Times New Roman","serif";
color:#1F497D'><o:p></o:p></span></p>

<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0 width=228
 style='width:171.0pt'>
 <tr>
  <td width=48 valign=top style='width:36.0pt;padding:0cm 0cm 0cm 0cm'>
  <p class=MsoNormal style='margin:0cm;margin-bottom:.0001pt'><span
  style='font-size:7.5pt;font-family:"Arial","sans-serif";color:#1F497D'>Postal:</span><span
  style='font-size:12.0pt;color:#1F497D'><o:p></o:p></span></p>
  </td>
  <td width=180 style='width:135.0pt;padding:0cm 0cm 0cm 0cm'>
  <p class=MsoNormal align=right style='mso-margin-top-alt:auto;margin-right:
  9.0pt;mso-margin-bottom-alt:auto;text-align:right'><span style='font-size:
  7.5pt;font-family:"Arial","sans-serif";color:#1F497D'>PO BOX 967<br>
  HILLARYS WA 6923</span><span style='font-size:12.0pt;color:#1F497D'><o:p></o:p></span></p>
  </td>
 </tr>
 <tr>
  <td width=48 style='width:36.0pt;padding:0cm 0cm 0cm 0cm'>
  <p class=MsoNormal style='margin:0cm;margin-bottom:.0001pt'><span
  style='font-size:7.5pt;font-family:"Arial","sans-serif";color:#1F497D'>Ph:</span><span
  style='font-size:12.0pt;color:#1F497D'><o:p></o:p></span></p>
  </td>
  <td width=180 style='width:135.0pt;padding:0cm 0cm 0cm 0cm'>
  <p class=MsoNormal align=right style='mso-margin-top-alt:auto;margin-right:
  9.0pt;mso-margin-bottom-alt:auto;text-align:right'><span style='font-size:
  7.5pt;font-family:"Arial","sans-serif";color:#1F497D'>(08) 9403 3737 </span><span
  style='font-size:12.0pt;color:#1F497D'><o:p></o:p></span></p>
  </td>
 </tr>
 <tr>
  <td width=48 style='width:36.0pt;padding:0cm 0cm 0cm 0cm'>
  <p class=MsoNormal style='margin:0cm;margin-bottom:.0001pt'><span
  style='font-size:7.5pt;font-family:"Arial","sans-serif";color:#1F497D'>Mobile:</span><span
  style='font-size:12.0pt;color:#1F497D'><o:p></o:p></span></p>
  </td>
  <td width=180 style='width:135.0pt;padding:0cm 0cm 0cm 0cm'>
  <p class=MsoNormal align=right style='mso-margin-top-alt:auto;margin-right:
  9.0pt;mso-margin-bottom-alt:auto;text-align:right'><span style='font-size:
  7.5pt;font-family:"Arial","sans-serif";color:#1F497D'>0417 677 275 </span><span
  style='font-size:12.0pt;color:#1F497D'><o:p></o:p></span></p>
  </td>
 </tr>
 <tr>
  <td width=48 style='width:36.0pt;padding:0cm 0cm 0cm 0cm'>
  <p class=MsoNormal style='margin:0cm;margin-bottom:.0001pt'><span
  style='font-size:7.5pt;font-family:"Arial","sans-serif";color:#1F497D'>Fax:</span><span
  style='font-size:12.0pt;color:#1F497D'><o:p></o:p></span></p>
  </td>
  <td width=180 style='width:135.0pt;padding:0cm 0cm 0cm 0cm'>
  <p class=MsoNormal align=right style='mso-margin-top-alt:auto;margin-right:
  9.0pt;mso-margin-bottom-alt:auto;text-align:right'><span style='font-size:
  7.5pt;font-family:"Arial","sans-serif";color:#1F497D'>(08) 9403 3738</span><span
  style='font-size:12.0pt;color:#1F497D'><o:p></o:p></span></p>
  </td>
 </tr>
 <tr>
  <td width=48 style='width:36.0pt;padding:0cm 0cm 0cm 0cm'>
  <p class=MsoNormal style='margin:0cm;margin-bottom:.0001pt'><span
  style='font-size:7.5pt;font-family:"Arial","sans-serif";color:#1F497D'>Skype:</span><span
  style='font-size:12.0pt;color:#1F497D'><o:p></o:p></span></p>
  </td>
  <td width=180 style='width:135.0pt;padding:0cm 0cm 0cm 0cm'>
  <p class=MsoNormal align=right style='mso-margin-top-alt:auto;margin-right:
  9.0pt;mso-margin-bottom-alt:auto;text-align:right'><span style='font-size:
  7.5pt;font-family:"Arial","sans-serif";color:#1F497D'>itbeyond_david</span><span
  style='font-size:12.0pt;color:#1F497D'><o:p></o:p></span></p>
  </td>
 </tr>
</table>

<div class=MsoNormal align=center style='margin:0cm;margin-bottom:.0001pt;
text-align:center'><span style='color:#1F497D'>

<hr size=2 width="80%" align=center>

</span></div>

<p class=MsoNormal align=center style='margin:4.5pt;text-align:center'><span
style='font-size:10.0pt;font-family:"Arial","sans-serif";color:#1F497D'>Check
out our websites: <u><a href="http://www.exploroz.com/"
title="http://www.exploroz.com/"><span style='color:#1F497D'>www.ExplorOz.com</span></a></u>
and <u><a href="http://www.itbeyond.com.au/" title="http://www.itbeyond.com.au/"><span
style='color:#1F497D'>www.itbeyond.com.au</span></a></u></span><span
style='color:#1F497D'><o:p></o:p></span></p>

<div class=MsoNormal align=center style='margin:0cm;margin-bottom:.0001pt;
text-align:center'><span style='color:#1F497D'>

<hr size=2 width="100%" align=center>

</span></div>

<p class=MsoNormal><o:p>&nbsp;</o:p></p>

</div>

</body>

</html>