<?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: replace powered by ESRI in ArcGIS API for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84496#M1973</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you're already hiding the logo and trying to add yours, but still get that error, sometimes this&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;unable to resolve 'assets/images/NEW_ITRE_LOGO1.png' for transcoding&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Can be fixed by adding a "/" at the beginning.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;unable to resolve '/assets/images/NEW_ITRE_LOGO1.png' for transcoding&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It's happened to me before with Embeds.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Sep 2010 21:01:07 GMT</pubDate>
    <dc:creator>ReneRubalcava</dc:creator>
    <dc:date>2010-09-15T21:01:07Z</dc:date>
    <item>
      <title>replace powered by ESRI</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84435#M1912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi all I perfectly replaced ESRI logo with this script:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://forums.esri.com/thread.asp?t=287497&amp;amp;f=2421&amp;amp;c=158#912795"&gt;http://forums.esri.com/thread.asp?t=287497&amp;amp;f=2421&amp;amp;c=158#912795&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;Now how can I replace link to esri.com/flex?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Naty&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Jul 2010 09:01:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84435#M1912</guid>
      <dc:creator>NatashaManzuiga</dc:creator>
      <dc:date>2010-07-22T09:01:53Z</dc:date>
    </item>
    <item>
      <title>Re: replace powered by ESRI</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84436#M1913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Naty,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Try this&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;private function changeESRILogo(map:Map):void {
&amp;nbsp;&amp;nbsp;&amp;nbsp; for(var i:int = 0 ; i &amp;lt; map.numChildren ; i++){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var component:UIComponent = map.getChildAt(i) as UIComponent;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(component.className == "StaticLayer"){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for(var j:int = 0 ; j &amp;lt; component.numChildren ; j++){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var stComponent:UIComponent = component.getChildAt(j) as UIComponent;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(stComponent.className == "Image"){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var img:Image = stComponent as Image;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (img.source.toString().indexOf("logo") &amp;gt; 0){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; img.source = myLogo;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; img.addEventListener(MouseEvent.MOUSE_DOWN ,gotoMyURL,false,1000);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return;
&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; }&lt;/PRE&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;private function gotoMyURL(evt:Event):void
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; var myURL:URLRequest = new URLRequest("http://www.google.com/");
&amp;nbsp;&amp;nbsp;&amp;nbsp; navigateToURL(myURL);
&amp;nbsp;&amp;nbsp;&amp;nbsp; evt.stopPropagation();
&amp;nbsp;&amp;nbsp; }&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 23:13:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84436#M1913</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-10T23:13:53Z</dc:date>
    </item>
    <item>
      <title>Re: replace powered by ESRI</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84437#M1914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Naty,&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Try this&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;private function changeESRILogo(map:Map):void {
&amp;nbsp;&amp;nbsp;&amp;nbsp; for(var i:int = 0 ; i &amp;lt; map.numChildren ; i++){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var component:UIComponent = map.getChildAt(i) as UIComponent;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(component.className == "StaticLayer"){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for(var j:int = 0 ; j &amp;lt; component.numChildren ; j++){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var stComponent:UIComponent = component.getChildAt(j) as UIComponent;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(stComponent.className == "Image"){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var img:Image = stComponent as Image;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (img.source.toString().indexOf("logo") &amp;gt; 0){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; img.source = myLogo;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; img.addEventListener(MouseEvent.MOUSE_DOWN ,gotoMyURL,false,1000);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return;
&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; }&lt;/PRE&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;private function gotoMyURL(evt:Event):void
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; var myURL:URLRequest = new URLRequest("http://www.google.com/");
&amp;nbsp;&amp;nbsp;&amp;nbsp; navigateToURL(myURL);
&amp;nbsp;&amp;nbsp;&amp;nbsp; evt.stopPropagation();
&amp;nbsp;&amp;nbsp; }&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; Great Robert!!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I just have the last question for u &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; How can I do this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks Robert&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://forums.arcgis.com/threads/8310-Activate-Graphical-Search-Select-by-Point-%28SearchWidget%29-from-menu-item" rel="nofollow noopener noreferrer" target="_blank"&gt;http://forums.arcgis.com/threads/8310-Activate-Graphical-Search-Select-by-Point-%28SearchWidget%29-from-menu-item&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 23:13:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84437#M1914</guid>
      <dc:creator>NatashaManzuiga</dc:creator>
      <dc:date>2021-12-10T23:13:56Z</dc:date>
    </item>
    <item>
      <title>Re: replace powered by ESRI</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84438#M1915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Where would I put these two functions?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Aug 2010 13:40:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84438#M1915</guid>
      <dc:creator>deleted-user-rQoEFM5qzbHE</dc:creator>
      <dc:date>2010-08-31T13:40:28Z</dc:date>
    </item>
    <item>
      <title>Re: replace powered by ESRI</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84439#M1916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jeremy,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Depends on what your app is... Are you talking a custom flex api app, Sample Flex Viewer 1.x or FlexViewer 2.0?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Aug 2010 14:02:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84439#M1916</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2010-08-31T14:02:54Z</dc:date>
    </item>
    <item>
      <title>Re: replace powered by ESRI</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84440#M1917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sorry, I am attempting to modify the Flex Viewer 2.0 API.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Aug 2010 14:10:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84440#M1917</guid>
      <dc:creator>deleted-user-rQoEFM5qzbHE</dc:creator>
      <dc:date>2010-08-31T14:10:17Z</dc:date>
    </item>
    <item>
      <title>Re: replace powered by ESRI</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84441#M1918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jeremy,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; In that case this code goes in the MapManager.mxml.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Aug 2010 14:12:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84441#M1918</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2010-08-31T14:12:13Z</dc:date>
    </item>
    <item>
      <title>Re: replace powered by ESRI</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84442#M1919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for the response. And, since I have your attention is this where I would put the code related to clustering? I tried to put that in the ViewerContainer.mxml (I am pretty sure this was wrong, but didn't know where to put it) and it kind of works, but it the layers come up behind the existing services found in the config.xml.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Aug 2010 14:16:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84442#M1919</guid>
      <dc:creator>deleted-user-rQoEFM5qzbHE</dc:creator>
      <dc:date>2010-08-31T14:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: replace powered by ESRI</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84443#M1920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jeremy,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Not sure which clustering code you are referencing but as clustering is a layer than yes it should go in the MapManager.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Aug 2010 14:23:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84443#M1920</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2010-08-31T14:23:32Z</dc:date>
    </item>
    <item>
      <title>Re: replace powered by ESRI</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84444#M1921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It is the code found in the samples section for ArcGIS API for flex. I get an error for the section inside of the Declaration tag. The error says that the 'prefix "text" for element "text:TextFormat" is not bound'. Thanks again for all your help.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Aug 2010 14:39:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84444#M1921</guid>
      <dc:creator>deleted-user-rQoEFM5qzbHE</dc:creator>
      <dc:date>2010-08-31T14:39:15Z</dc:date>
    </item>
    <item>
      <title>Re: replace powered by ESRI</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84445#M1922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I tried the code mentioned above along with the &lt;/SPAN&gt;&lt;STRONG&gt;Embed&lt;/STRONG&gt;&lt;SPAN&gt; line mentioned in the link. Unfortunately, I get an error in the &lt;/SPAN&gt;&lt;STRONG&gt;Embed&lt;/STRONG&gt;&lt;SPAN&gt; line. It states that 'Access of undefined property source. Any thoughts? Thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Sep 2010 11:09:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84445#M1922</guid>
      <dc:creator>deleted-user-rQoEFM5qzbHE</dc:creator>
      <dc:date>2010-09-01T11:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: replace powered by ESRI</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84446#M1923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jeremy,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Did you change the source to an image that you have in your file structure?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;example is if you are using the FleViewer2.0 there is no such directory as com/esri/solutions/flexviewer/assets/images it would be assets/images instead.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;[Embed(source="com/esri/solutions/flexviewer/assets/images/powered_by_ME.png")]
&amp;nbsp;&amp;nbsp; private var myLogo:Class;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 23:13:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84446#M1923</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-10T23:13:59Z</dc:date>
    </item>
    <item>
      <title>Re: replace powered by ESRI</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84447#M1924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yeah, I changed it to the assets/images structure found in Version 2.0. These are the two lines:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[Embed(source="assets/images/NEW_ITRE_LOGO1.png")]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; private var myLogo:Class;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Sep 2010 16:08:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84447#M1924</guid>
      <dc:creator>deleted-user-rQoEFM5qzbHE</dc:creator>
      <dc:date>2010-09-01T16:08:55Z</dc:date>
    </item>
    <item>
      <title>Re: replace powered by ESRI</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84448#M1925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jeremy,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; OK, do you have the &lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;[Embed(source="assets/images/NEW_ITRE_LOGO1.png")]
private var myLogo:Class; &lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;near the top of the MapManager.mxml where the Private Var's are located or did you just paste that inside a function (which you can not do)?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 23:14:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84448#M1925</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-10T23:14:02Z</dc:date>
    </item>
    <item>
      <title>Re: replace powered by ESRI</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84449#M1926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I placed the two lines immediately below the last 'private var ...' line.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Sep 2010 16:40:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84449#M1926</guid>
      <dc:creator>deleted-user-rQoEFM5qzbHE</dc:creator>
      <dc:date>2010-09-01T16:40:01Z</dc:date>
    </item>
    <item>
      <title>Re: replace powered by ESRI</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84450#M1927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;An update to my problem. When I refresh the map service, I am getting an ActionScript error. The first line in the error points to the following line of code in the MapManager.mxml&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;if(component.className == "StaticLayer")&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I still have not resolved the error the comes up when compiling on the "Embed" line. Any thoughts?&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, 08 Sep 2010 16:43:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84450#M1927</guid>
      <dc:creator>deleted-user-rQoEFM5qzbHE</dc:creator>
      <dc:date>2010-09-08T16:43:47Z</dc:date>
    </item>
    <item>
      <title>Re: replace powered by ESRI</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84451#M1928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jeremy,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; You need these 2 imports&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import mx.core.UIComponent;
&amp;nbsp;&amp;nbsp; import mx.controls.Image;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 23:14:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84451#M1928</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-10T23:14:05Z</dc:date>
    </item>
    <item>
      <title>Re: replace powered by ESRI</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84452#M1929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Unfortunately, I already had those two import statements in the code. So, it must be something else.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Sep 2010 11:47:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84452#M1929</guid>
      <dc:creator>deleted-user-rQoEFM5qzbHE</dc:creator>
      <dc:date>2010-09-09T11:47:43Z</dc:date>
    </item>
    <item>
      <title>Re: replace powered by ESRI</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84453#M1930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jeremy,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Post your whole MapManager.mxml there is a simple explanation to this; somewhere...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Sep 2010 11:59:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84453#M1930</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2010-09-09T11:59:36Z</dc:date>
    </item>
    <item>
      <title>Re: replace powered by ESRI</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84454#M1931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Since I am new to this, it would be very easy for me to something obvious. Apparently the code is too long to enter into this comment section. I have attached it instead.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Sep 2010 12:46:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/replace-powered-by-esri/m-p/84454#M1931</guid>
      <dc:creator>deleted-user-rQoEFM5qzbHE</dc:creator>
      <dc:date>2010-09-09T12:46:09Z</dc:date>
    </item>
  </channel>
</rss>

