replace powered by ESRI

8320
70
07-22-2010 02:01 AM
NatashaManzuiga
Regular Contributor
Hi all I perfectly replaced ESRI logo with this script:
http://forums.esri.com/thread.asp?t=287497&f=2421&c=158#912795
Now how can I replace link to esri.com/flex?

Naty
Tags (2)
0 Kudos
70 Replies
DasaPaddock
Esri Regular Contributor
0 Kudos
ReneRubalcava
Esri Frequent Contributor
If you're already hiding the logo and trying to add yours, but still get that error, sometimes this
unable to resolve 'assets/images/NEW_ITRE_LOGO1.png' for transcoding

Can be fixed by adding a "/" at the beginning.
unable to resolve '/assets/images/NEW_ITRE_LOGO1.png' for transcoding

It's happened to me before with Embeds.
0 Kudos
JoshuaCoates
Deactivated User
Can anyone offer information as to why both web sites still open up? I have successfully replaced the ESRI logo with my own, and I can click my logo and have my website open, however, the ESRI website still opens simultaneously with my website?!
0 Kudos
RobertScheitlin__GISP
MVP Emeritus
Joshua,

   Did you follow Dasa's advice and change the gotoMyurl function?

private function gotoMyURL(evt:Event):void
   {
    var myURL:URLRequest = new URLRequest("http://www.yahoo.com");
    navigateToURL(myURL);
    evt.stopImmediatePropagation();
   }
0 Kudos
JoshuaCoates
Deactivated User
Yes, I have. I have that exactly in my mxml....
0 Kudos
MelissaJohnson
Frequent Contributor
I am having issues trying to replace the powered by esri logo also.

My error is 1120:Access of undefined property gotoMyURL in mapmanager.mxml.  I am working with the flex viewer 2.0.
Any suggestions are greatly appreciated.
Melissa
0 Kudos
MelissaJohnson
Frequent Contributor
Found that problem, was missing the gotourl function, but I am also having the issue with the ESRI website and my web link opening when my own logo is clicked now.
0 Kudos
JoshuaCoates
Deactivated User
Yea this is stumping quite a few people I think. There has not been a way to fix this yet. Make sure you have followed Dasa's advice above. But this still does not fix the issue. You can try to see if it works for you though.
0 Kudos
MelissaJohnson
Frequent Contributor
Yes I think this is what she sugested:

private function gotoMyURL(evt:Event):void
   {
    var myURL:URLRequest = new URLRequest("http://www.midmogis.org");
    navigateToURL(myURL);
    evt.stopImmediatePropagation();
   }
0 Kudos
JoshuaCoates
Deactivated User
Yes, but it does not do the trick. I am just going to leave it as is until someone else can chime in with anything.
0 Kudos