<?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 Re: Questions regarding a flexviewer website in ArcGIS API for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/questions-regarding-a-flexviewer-website/m-p/232036#M5457</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;2) In BookMark functionality they are saving the bookmark inside the cookies or in the browser memory, how they are doing this? &lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I was looking into this same issue as you.&amp;nbsp; It seems that there is a bug in the BookmarkWidget.mxml code.&amp;nbsp; Find the following function in this file&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp; private function updateBookmarkAC(bkAC:ArrayCollection):ArrayCollection
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; var outBkAC:ArrayCollection = new ArrayCollection();
&amp;nbsp;&amp;nbsp;&amp;nbsp; var ext:Extent;
&amp;nbsp;&amp;nbsp;&amp;nbsp; var bkObj:Object;
&amp;nbsp;&amp;nbsp;&amp;nbsp; for each(var bk:Object in outBkAC)
&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ext = updateExtent(bk.srs, new String(bk.xmin + " " + bk.ymin + " " + bk.xmax + " " + bk.ymax));

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bkObj = {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; recicon: bk.icon,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; name: bk.name,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; srs : bk.srs,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmin: Number(ext.xmin).toFixed(4),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ymin: Number(ext.ymin).toFixed(4),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmax: Number(ext.xmax).toFixed(4),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ymax: Number(ext.ymax).toFixed(4)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; outBkAC.addItem(bkObj);
&amp;nbsp;&amp;nbsp;&amp;nbsp; }

&amp;nbsp;&amp;nbsp;&amp;nbsp; return outBkAC
&amp;nbsp;&amp;nbsp; }&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There is a mistake in the for loop.&amp;nbsp; Just change the line to this&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;for each(var bk:Object in bkAC)&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and you'll be away.&amp;nbsp; As long as the client machine allows it, bookmarks should be persisted across sessions&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 11:44:52 GMT</pubDate>
    <dc:creator>LukeEvans</dc:creator>
    <dc:date>2021-12-11T11:44:52Z</dc:date>
    <item>
      <title>Questions regarding a flexviewer website</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/questions-regarding-a-flexviewer-website/m-p/232035#M5456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Dear All, &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I request you to go through the following website:- &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.onemap.sg/index.html"&gt;http://www.onemap.sg/index.html&lt;/A&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have some questions regarding some of the functionalities developed in this website. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) From top towards right third tool, fifth tool option Magnify, a magnifier tool open in this tool by using the slider below the magnifier tool I can zoomin and zoomout on the layer. How can I do this? and how to put + and - images on the slider bar inside the Magnify tool as well as outside (on the top left), [[ According to my understanding they are using slider control inside the magnifier window, on moving the slider bar they are comparring the slider.value with previous slider.value and changing the map.level property based on slider value. I am trying to do this but it is not working can you guys tell me about this, according to me the best solution would be to place the slider which comes automatically when we use tiled service, inside the magnifier. But how to do this? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2) In BookMark functionality they are saving the bookmark inside the cookies or in the browser memory, how they are doing this? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;3) How the tool tip is coming in a flashing manner. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;4) Can you please provide me an example similar to print preview as shown in this site. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;5) A sample example with code for overlay of JPEG &amp;amp; GIF at a particular location. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;6) A sample example with code for Uploading the pictures and documents through info window. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;7) A sample example with code for Generate report and save report in csv and pdf format &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt; Query geospatial and non-geospatial attributes on for multiple layers. A functionality similar in ArcMap where user wants to see those selected features which are intersecting with features in a particular layer. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;9) Buffer and select by location, and select feature/features by drawing a rectangle on the map. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;10) Adding a hyperlink inside info window. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards, &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Vicky&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Apr 2010 10:05:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/questions-regarding-a-flexviewer-website/m-p/232035#M5456</guid>
      <dc:creator>VickyP</dc:creator>
      <dc:date>2010-04-02T10:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: Questions regarding a flexviewer website</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/questions-regarding-a-flexviewer-website/m-p/232036#M5457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;2) In BookMark functionality they are saving the bookmark inside the cookies or in the browser memory, how they are doing this? &lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I was looking into this same issue as you.&amp;nbsp; It seems that there is a bug in the BookmarkWidget.mxml code.&amp;nbsp; Find the following function in this file&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp; private function updateBookmarkAC(bkAC:ArrayCollection):ArrayCollection
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; var outBkAC:ArrayCollection = new ArrayCollection();
&amp;nbsp;&amp;nbsp;&amp;nbsp; var ext:Extent;
&amp;nbsp;&amp;nbsp;&amp;nbsp; var bkObj:Object;
&amp;nbsp;&amp;nbsp;&amp;nbsp; for each(var bk:Object in outBkAC)
&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ext = updateExtent(bk.srs, new String(bk.xmin + " " + bk.ymin + " " + bk.xmax + " " + bk.ymax));

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bkObj = {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; recicon: bk.icon,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; name: bk.name,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; srs : bk.srs,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmin: Number(ext.xmin).toFixed(4),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ymin: Number(ext.ymin).toFixed(4),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmax: Number(ext.xmax).toFixed(4),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ymax: Number(ext.ymax).toFixed(4)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; outBkAC.addItem(bkObj);
&amp;nbsp;&amp;nbsp;&amp;nbsp; }

&amp;nbsp;&amp;nbsp;&amp;nbsp; return outBkAC
&amp;nbsp;&amp;nbsp; }&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There is a mistake in the for loop.&amp;nbsp; Just change the line to this&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;for each(var bk:Object in bkAC)&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and you'll be away.&amp;nbsp; As long as the client machine allows it, bookmarks should be persisted across sessions&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 11:44:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/questions-regarding-a-flexviewer-website/m-p/232036#M5457</guid>
      <dc:creator>LukeEvans</dc:creator>
      <dc:date>2021-12-11T11:44:52Z</dc:date>
    </item>
    <item>
      <title>Re: Questions regarding a flexviewer website</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/questions-regarding-a-flexviewer-website/m-p/232037#M5458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;3) The tool/info glow code is in InfoPopup.mxml&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;mx:SWFLoader id="infoGlow" x="0" y="0" width="80" height="80" source="com/esri/solutions/flexviewer/assets/flash/Red_glow.swf" visible="false"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Note: if you make the width and height zero it will stop glowing.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;4) for print template see --&amp;gt; &lt;/SPAN&gt;&lt;A href="http://resources.esri.com/arcgisserver/apis/flex/index.cfm?fa=codeGalleryDetails&amp;amp;scriptID=16778"&gt;http://resources.esri.com/arcgisserver/apis/flex/index.cfm?fa=codeGalleryDetails&amp;amp;scriptID=16778&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt; For querying you can use the defult SearchWidget in the Sample Flex Viewer or modify it to meet your requirements.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;6/10) To display a image/hyperlink using SearchWidget/LiveLayerWidget info window, add the image-hyperlink/hyperlink to SearchWidget.xml/LiveLayerWidget.xml &amp;lt;linkfiled&amp;gt; tag. Ex:&amp;nbsp; &amp;lt;linkfield&amp;gt;hyperlink&amp;lt;/linkfield&amp;gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jun 2010 18:19:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/questions-regarding-a-flexviewer-website/m-p/232037#M5458</guid>
      <dc:creator>SreeS</dc:creator>
      <dc:date>2010-06-25T18:19:04Z</dc:date>
    </item>
  </channel>
</rss>

