Select to view content in your preferred language

HeaderControllerWidget.mxml - "About" link

598
1
Jump to solution
09-27-2012 08:26 AM
PaulFerro1
Deactivated User
I do not want a splash page to open when the user click's the "About" tab in the Flexviewer 2.5.  Instead, I want to replace it with a simple hyperlink, so that when the user click's the "About" tab in opens a website in another window.

Thanks for any help!
Paul
Tags (2)
0 Kudos
1 Solution

Accepted Solutions
RobertScheitlin__GISP
MVP Emeritus
Paul,

   This post belongs in the Flex Viewer Forum:

http://forums.arcgis.com/forums/111-ArcGIS-Viewer-for-Flex

But the answer is in the HeaderControllerWidget.mxml find the showAbout function:

            private function showAbout():void             {                 HTMLPopup.show(aboutContent, aboutButtonLabel, aboutWidth, aboutHeight);             }


And replace it with something like this:


            private function showAbout():void             {                 var u:URLRequest = new URLRequest("yoururl");                 navigateToURL(u);             }

View solution in original post

0 Kudos
1 Reply
RobertScheitlin__GISP
MVP Emeritus
Paul,

   This post belongs in the Flex Viewer Forum:

http://forums.arcgis.com/forums/111-ArcGIS-Viewer-for-Flex

But the answer is in the HeaderControllerWidget.mxml find the showAbout function:

            private function showAbout():void             {                 HTMLPopup.show(aboutContent, aboutButtonLabel, aboutWidth, aboutHeight);             }


And replace it with something like this:


            private function showAbout():void             {                 var u:URLRequest = new URLRequest("yoururl");                 navigateToURL(u);             }
0 Kudos