<?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: Remove Powered by ESRI in FlexViewer 2.1 in ArcGIS Viewer for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95362#M3524</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;How do you do this? I do not see buttonMode??&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 Oct 2010 18:02:49 GMT</pubDate>
    <dc:creator>JoshuaCoates</dc:creator>
    <dc:date>2010-10-22T18:02:49Z</dc:date>
    <item>
      <title>Remove Powered by ESRI in FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95355#M3517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am pretty new to the Flex Viewer arena.&amp;nbsp; I am trying to find where the reference to the "Powered by ESRI" logo (lower right corner of the map window) is located.&amp;nbsp; I have found references in other older threads to the MapManager.mxml, but I cannot find this on the server (wondering if this is a version difference???)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any help would be appreciated&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Eric Venden&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Gurnee, IL&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Oct 2010 12:30:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95355#M3517</guid>
      <dc:creator>EricVenden</dc:creator>
      <dc:date>2010-10-19T12:30:04Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Powered by ESRI in FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95356#M3518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The logo comes from the ArcGIS API for Flex. You can hide it by setting adding this to the MapManager's partAdded() function:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;map.logoVisible = false;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Oct 2010 18:52:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95356#M3518</guid>
      <dc:creator>DasaPaddock</dc:creator>
      <dc:date>2010-10-21T18:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Powered by ESRI in FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95357#M3519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you hide it, and replace with your own logo...How do you make it not open the ESRI website when I click my own logo? I am able to get my website to open, the ESRI site just opens simultaneously with it?!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Oct 2010 11:27:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95357#M3519</guid>
      <dc:creator>JoshuaCoates</dc:creator>
      <dc:date>2010-10-22T11:27:17Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Powered by ESRI in FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95358#M3520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;i just removed the logo as has been suggested previously...then used the staticImage widget to place my logo. Then insert the 'click="xxxxxxxxxxx..." code shown below at the end of the staticImage.mxml and it makes your logo clickable with a link to a url.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt; if (dataTable.key == IMAGE_URL)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; img.source = dataTable.collection[0];
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ]]&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/fx:Script&amp;gt;

&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;mx:VBox width="100%" height="100%"&amp;gt;
&amp;nbsp; &amp;lt;!-- PS - added click event for url link --&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;mx:Image id="img" width="205" click="navigateToURL(new URLRequest('http://www.gissolutions.ca'), 'quote')"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; useHandCursor="true"/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/mx:VBox&amp;gt;
&amp;lt;/viewer:BaseWidget&amp;gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 16:00:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95358#M3520</guid>
      <dc:creator>philippschnetzer</dc:creator>
      <dc:date>2021-12-12T16:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Powered by ESRI in FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95359#M3521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks, I got it working perfectly! Is there anyway to make it where there is a hand instead of the regular mouse arrow so that Users know it is click able?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Oct 2010 16:58:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95359#M3521</guid>
      <dc:creator>JoshuaCoates</dc:creator>
      <dc:date>2010-10-22T16:58:15Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Powered by ESRI in FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95360#M3522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Try also setting the buttonMode to true on the Image.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Oct 2010 17:29:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95360#M3522</guid>
      <dc:creator>DasaPaddock</dc:creator>
      <dc:date>2010-10-22T17:29:50Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Powered by ESRI in FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95361#M3523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;How do you do this? I do not see buttonMode??&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Oct 2010 17:46:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95361#M3523</guid>
      <dc:creator>JoshuaCoates</dc:creator>
      <dc:date>2010-10-22T17:46:04Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Powered by ESRI in FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95362#M3524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;How do you do this? I do not see buttonMode??&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Oct 2010 18:02:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95362#M3524</guid>
      <dc:creator>JoshuaCoates</dc:creator>
      <dc:date>2010-10-22T18:02:49Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Powered by ESRI in FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95363#M3525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks - this was helpful.&amp;nbsp; However, I am wanting to get my city logo (static image) to be at the bottom right hand corner of my map - and I cannot get it to that location.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What do I need to do to change the location?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Nov 2010 15:52:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95363#M3525</guid>
      <dc:creator>CynthiaMatney</dc:creator>
      <dc:date>2010-11-23T15:52:51Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Powered by ESRI in FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95364#M3526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can specify location in the config.xml.&amp;nbsp; Specifically, put the following line under &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;!-- UI elements --&amp;gt; in your main config.xml...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;&amp;lt;widget bottom="2" right="27"&amp;nbsp; config="widgets/StaticImage/StaticImageWidget.xml" url="widgets/StaticImage/StaticImageWidget.swf"/&amp;gt;&amp;nbsp;&amp;nbsp; &lt;/PRE&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To change the size of the image you will need to change the 'width="xxx"' property found in a code block shown above in red...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Nov 2010 10:54:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95364#M3526</guid>
      <dc:creator>philippschnetzer</dc:creator>
      <dc:date>2010-11-24T10:54:08Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Powered by ESRI in FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95365#M3527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;The logo comes from the ArcGIS API for Flex. You can hide it by setting adding this to the MapManager's partAdded() function:&lt;BR /&gt;&lt;BR /&gt;map.logoVisible = false;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Where can I find MapManager.mxml?&amp;nbsp; I have only 'assets' and 'widgets' folders and these contain swf, xml, swz, html, js, and txt.&amp;nbsp; There are no .mxml files anywhere in my directory structure. Did I need to do something different to get these files?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Nov 2010 12:08:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95365#M3527</guid>
      <dc:creator>GeorgiannaStrode</dc:creator>
      <dc:date>2010-11-24T12:08:10Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Powered by ESRI in FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95366#M3528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks - that is actually what I had tried (numerous times) without success.&amp;nbsp; I could get it to go to the right of the page or the left of the page; however, it WOULD NOT go to the bottom of the page!&amp;nbsp; In the end it only worked by me telling it to go from the top"840" - which was a bit ridiculous - but at least it FINALLY put it at the bottom right hand corner of my map where I wished it to go.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Nov 2010 12:08:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95366#M3528</guid>
      <dc:creator>CynthiaMatney</dc:creator>
      <dc:date>2010-11-24T12:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Powered by ESRI in FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95367#M3529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;FREAC - you are using the compiled version of the flexviewer...this version does not contain mxml.&amp;nbsp; To get at the source code for these widgets you need to load the source files for the flex viewer...go here:&amp;nbsp; &lt;/SPAN&gt;&lt;A href="http://www.arcgis.com/home/item.html?id=3f6a0bfee48949a88df50bf7686ec72a"&gt;http://www.arcgis.com/home/item.html?id=3f6a0bfee48949a88df50bf7686ec72a&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;CKTIA07 - be aware that when your map is viewed on a different sized screen it will still place that image 840 pixels from the top...so if you have a huge screen it might place it nearer the middle of the screen rather than on the bottom.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Nov 2010 13:52:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95367#M3529</guid>
      <dc:creator>philippschnetzer</dc:creator>
      <dc:date>2010-11-24T13:52:03Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Powered by ESRI in FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95368#M3530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Any clue why when I tell it (static image widget) to go to the bottom and far right of my page it shows up in the middle on the far right side - no matter what number I put in (ie: bottom "0" or bottom "20") in the config.xml?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Dec 2010 17:04:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95368#M3530</guid>
      <dc:creator>CynthiaMatney</dc:creator>
      <dc:date>2010-12-01T17:04:54Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Powered by ESRI in FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95369#M3531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Cynthia,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; You are putting it under the :&lt;/SPAN&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;&amp;lt;!-- UI elements --&amp;gt;&lt;/PRE&gt;&lt;SPAN&gt; line right, and not in the widgetcontainer correct?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Dec 2010 17:22:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95369#M3531</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2010-12-01T17:22:44Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Powered by ESRI in FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95370#M3532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You are correct I have it with the UI Elements.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Dec 2010 17:45:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95370#M3532</guid>
      <dc:creator>CynthiaMatney</dc:creator>
      <dc:date>2010-12-01T17:45:31Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Powered by ESRI in FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95371#M3533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Cynthia,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Have you tried a different image, because I can not reproduce this on my end?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Dec 2010 18:15:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95371#M3533</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2010-12-01T18:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Powered by ESRI in FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95372#M3534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I had tried a couple different city logos to no avail; however, I just tried another 'smaller' image and it worked.&amp;nbsp; So I created a smaller city logo and that seemed to work as well!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Dec 2010 19:19:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95372#M3534</guid>
      <dc:creator>CynthiaMatney</dc:creator>
      <dc:date>2010-12-01T19:19:55Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Powered by ESRI in FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95373#M3535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;...is there a way for a non- flex developer to remove the logo? Really we do not have the flex builder to be able to compile the sorce code if we make any changes ...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Dec 2010 14:49:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95373#M3535</guid>
      <dc:creator>GabiVoicu</dc:creator>
      <dc:date>2010-12-16T14:49:54Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Powered by ESRI in FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95374#M3536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;In the new Flex Viewer 2.2 - you can remove the ESRI Logo in the config.xml&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;esrilogovisible&amp;gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Dec 2010 14:55:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/remove-powered-by-esri-in-flexviewer-2-1/m-p/95374#M3536</guid>
      <dc:creator>CynthiaMatney</dc:creator>
      <dc:date>2010-12-16T14:55:12Z</dc:date>
    </item>
  </channel>
</rss>

