Select to view content in your preferred language

Mouse pointer tip

1112
2
Jump to solution
03-26-2014 03:06 AM
JamesEdge
Deactivated User
Where do you set the tip for the mouse pointer (see attachment) as i need to change the text? I have searched *.xml *.mxml and *.as within my workspace but cannot find this text. The tip appears when the Identify point tool is activated and does not appear when de-activated.
Tags (2)
0 Kudos
1 Solution

Accepted Solutions
JamesEdge
Deactivated User
Thanks Robert. This widget is loosely based on the Identify widget. It is version 3.5. I had
setMapAction(DrawTool.MAPPOINT, status, null, drawEnd); and have now changed it to
setMapAction(DrawTool.MAPPOINT, status, null, drawEnd, null, false, true); and this has suppressed the tip.

View solution in original post

0 Kudos
2 Replies
RobertScheitlin__GISP
MVP Emeritus
James,

   The only reason that the draw tooltip will not go away would be that the identifys draw tool is still active. You likely have the keepidentifyactive set to true in the IdentifyWidget.xml.

   As far as where the tooltip is set, it is set by the Flex API and that is why you can not find it. There is a mechanism to change it in the 3.6 version of the API but the ability to change the tip in the viewer was not added in the the setMapAction function of the MapManager.mxml in 3.6. This enhancement has been requested by me and will be added to 3.7 version of the viewer.
0 Kudos
JamesEdge
Deactivated User
Thanks Robert. This widget is loosely based on the Identify widget. It is version 3.5. I had
setMapAction(DrawTool.MAPPOINT, status, null, drawEnd); and have now changed it to
setMapAction(DrawTool.MAPPOINT, status, null, drawEnd, null, false, true); and this has suppressed the tip.
0 Kudos