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
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?!
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();
}
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
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.
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.
private function gotoMyURL(evt:Event):void { var myURL:URLRequest = new URLRequest("http://www.midmogis.org"); navigateToURL(myURL); evt.stopImmediatePropagation(); }