<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Defining Custom Pointer in ArcGIS API for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/defining-custom-pointer/m-p/564760#M12722</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi All:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am trying to define some custom pointers for my tools. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;( for example toggling map.openHandCursorVisible property will change between "openHand/pan" and "regular" cursor.). I would like to add 2 additional types. Should I work with cursor manager directly in Flex or using AGS Flex API?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I will appreciate if you could point me out to documentation/examples where this issue is discussed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Kind regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Alexander&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 31 Jan 2011 13:49:15 GMT</pubDate>
    <dc:creator>AlexanderStepanov</dc:creator>
    <dc:date>2011-01-31T13:49:15Z</dc:date>
    <item>
      <title>Defining Custom Pointer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/defining-custom-pointer/m-p/564760#M12722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi All:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am trying to define some custom pointers for my tools. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;( for example toggling map.openHandCursorVisible property will change between "openHand/pan" and "regular" cursor.). I would like to add 2 additional types. Should I work with cursor manager directly in Flex or using AGS Flex API?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I will appreciate if you could point me out to documentation/examples where this issue is discussed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Kind regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Alexander&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Jan 2011 13:49:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/defining-custom-pointer/m-p/564760#M12722</guid>
      <dc:creator>AlexanderStepanov</dc:creator>
      <dc:date>2011-01-31T13:49:15Z</dc:date>
    </item>
    <item>
      <title>Re: Defining Custom Pointer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/defining-custom-pointer/m-p/564761#M12723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Alexander,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Try something like this. Create your own png image and then:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;[Embed('../images/i_pointer_cursor.png')]
private var _pointerCursor:Class;

map.cursorManager.setCursor(_pointerCursor,2,0,-3); &lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you want access to default cursors you can try something like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;Mouse.cursor = MouseCursor.ARROW;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-Andy&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Esri Developer Network Team&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 00:20:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/defining-custom-pointer/m-p/564761#M12723</guid>
      <dc:creator>AndyGup</dc:creator>
      <dc:date>2021-12-12T00:20:17Z</dc:date>
    </item>
    <item>
      <title>Re: Defining Custom Pointer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/defining-custom-pointer/m-p/564762#M12724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Andy, thank you!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I will try it. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Kind regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Alexander&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Alexander,&lt;BR /&gt;&lt;BR /&gt;Try something like this. Create your own png image and then:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;[Embed('../images/i_pointer_cursor.png')]
private var _pointerCursor:Class;

map.cursorManager.setCursor(_pointerCursor,2,0,-3); &lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If you want access to default cursors you can try something like this:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;Mouse.cursor = MouseCursor.ARROW;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;-Andy&lt;BR /&gt;Esri Developer Network Team&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 00:20:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/defining-custom-pointer/m-p/564762#M12724</guid>
      <dc:creator>AlexanderStepanov</dc:creator>
      <dc:date>2021-12-12T00:20:19Z</dc:date>
    </item>
  </channel>
</rss>

