<BODY><P>Hi all,<BR>don't know where to post some improvement I've done. Don't know too, if I'm right to post that here :-| ... I've added some options to the Ruler widget as fellowing:<BR>Here is the xml tag:<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Command xsi:type="FusionCommandType"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Name&gt;Ruler&lt;/Name&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Label&gt;&lt;/Label&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Tooltip&gt;Measure distance&lt;/Tooltip&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Units&gt;Meters&lt;/Units&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Precision&gt;10&lt;/Precision&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;RulerTooltipContainer&gt;RulerContainerBox&lt;/RulerTooltipContainer&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;RulerTooltipType&gt;dynamic&lt;/RulerTooltipType&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!-- Only if Static --&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;RulerTipPositionTop&gt;0&lt;/RulerTipPositionTop&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;RulerTipPositionLeft&gt;100&lt;/RulerTipPositionLeft&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;ImageURL&gt;images/icons/measure.png&lt;/ImageURL&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;TargetViewer&gt;All&lt;/TargetViewer&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Action&gt;Ruler&lt;/Action&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/Command&gt;<BR><BR><BR>&lt;Precision&gt; Allows to display fixed distances:&nbsp;Enter&nbsp;10&nbsp;for 0.1, 100 for 0.01, etc...<BR><BR>&lt;RulerTooltipContainer&gt; The&nbsp;ID of a &lt;div&gt; you placed in the form for Distances display. When not given, a new div will be built on the fly.<BR><BR>&lt;RulerTooltipType&gt; dynamic: the distance display box (div) will felow your Mouse, as already implemented.<BR>static: The distance display box (div) will be placed on a specific location, given by the 2 fellowing tags: &lt;RulerTipPositionTop&gt; and &lt;RulerTipPositionLeft&gt;<BR><BR>---------------------------------------------<BR><BR>Put this code in your css file or in the &lt;style&gt;&lt;/style&gt; of your sheet. This enables to customise the appearance of the display box.<BR><BR>#RulerContainerBox {<BR>&nbsp;&nbsp;&nbsp; font: 12px tahoma<BR>&nbsp;&nbsp;&nbsp; position: absolute;<BR>&nbsp;&nbsp;&nbsp; width: 110px;<BR>&nbsp;&nbsp;&nbsp; float: left;<BR>&nbsp;&nbsp;&nbsp; border: solid #cc9966 2px;<BR>&nbsp;&nbsp;&nbsp; background-color: #B9C6E3;<BR>&nbsp;&nbsp;&nbsp; display : 'none';<BR>&nbsp;&nbsp;&nbsp; visibility : hidden;<BR>}<BR><BR><BR>What would be very nice, is to create an implementation of a tag, that allows to choose between distance measuring or area measuring. I'll try to do that in the next weeks...<BR><BR>Rémy</P></BODY>