Select to view content in your preferred language

Is there a way to edit the content found in the ABOUT tab in Flex Viewer?

1028
4
Jump to solution
03-18-2014 06:15 AM
RichardGeoghegan
Deactivated User
I'm using Flex Viewer application builder and I would like to edit the information in the ABOUT tab so that it contains information about my application. I'm aware that I could use the enhanced splash widget for this but I would like to allow the user the ability to refer back to information in the About tab whilst navigating the application. Is there a way to configure the content of the About tab as there doesn't seem to be xml document containing its code.
Tags (2)
0 Kudos
1 Solution

Accepted Solutions
RobertScheitlin__GISP
MVP Emeritus
Richard,

   Sure there is. You will find the XML configuration for this text in the HeaderControllerWidget.xml. Look at the doc link below in the links section:

http://resources.arcgis.com/en/help/flex-viewer/concepts/01m3/01m30000000n000000.htm

View solution in original post

0 Kudos
4 Replies
RobertScheitlin__GISP
MVP Emeritus
Richard,

   Sure there is. You will find the XML configuration for this text in the HeaderControllerWidget.xml. Look at the doc link below in the links section:

http://resources.arcgis.com/en/help/flex-viewer/concepts/01m3/01m30000000n000000.htm
0 Kudos
RichardGeoghegan
Deactivated User
Thanks for that Robert. On thing I'd like to be able to do is set a height and width for the About link. By any chance would you know where I might have gone wrong here?

<?xml version="1.0" ?>
<configuration>
    <geocoder visible="true">
        <url>https://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer</url>
        <useproxy>false</useproxy>
        <zoomscale>10000</zoomscale>
        <minscore>40</minscore>
    </geocoder>
  
    <links>
        <link label="About Application">
                <content width="375" height="600" content closelabel=""><![CDATA[
                <p align='center' >
0 Kudos
RobertScheitlin__GISP
MVP Emeritus
Richard,

The only problem I see is the extra "content" in your tag:

<content width="375" height="600" content closelabel="">
0 Kudos
RebeccaWatson
Deactivated User
You don't need to repeat the content word, try this:

    <links>
        <link label="About Application">
            <content width="375" height="600" closelabel="Close"><![CDATA[
                     <p align='center'>
                     </p>
                ]]></content>
        </link>
    </links>
0 Kudos