<?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: Google Analytics and FlexViewer 2.1 in ArcGIS Viewer for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134138#M4431</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I use it on my site directly from within flex. (not flexviewer though)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Like the link that Gady provided.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This allows you to log flex events as "pages" in google analytics.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;eg Each time a user clicks on the print button, it is logged as a "page" in google analytics.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To use in flexviewer you would have to set the "tracker" as a global variable.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Then each event you want to log as a page, you would use tracker.trackPageview( "/PrintButton")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Where the argument is the page name logged in Analytics.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is useful to find out what functionality is being used on our site, what is not being used.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Then you can ask questions like why is it not being used, hard to find, too many clicks, not user friendly etc.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Very useful tool. We have been using it for over 12 months.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;See attached for an example of the output I get.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Nov 2010 02:43:00 GMT</pubDate>
    <dc:creator>MarkHoyland</dc:creator>
    <dc:date>2010-11-24T02:43:00Z</dc:date>
    <item>
      <title>Google Analytics and FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134133#M4426</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Does anyone have experience with integrating Google Analytics into FlexViewer 2.1?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Nov 2010 17:49:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134133#M4426</guid>
      <dc:creator>MicheleDunham</dc:creator>
      <dc:date>2010-11-23T17:49:47Z</dc:date>
    </item>
    <item>
      <title>Re: Google Analytics and FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134134#M4427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Not specifically for FlexViewer (not sure any docs exist), but this is for general integration of Google Analytics into a Flash/Flex app: &lt;/SPAN&gt;&lt;A href="http://code.google.com/apis/analytics/docs/tracking/flashTrackingSetupFlex.html"&gt;http://code.google.com/apis/analytics/docs/tracking/flashTrackingSetupFlex.html&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Nov 2010 18:20:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134134#M4427</guid>
      <dc:creator>GadyPitaru</dc:creator>
      <dc:date>2010-11-23T18:20:23Z</dc:date>
    </item>
    <item>
      <title>Re: Google Analytics and FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134135#M4428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Michele,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Yep, I have it on my site all you need to do is add this block replacing your UA-xxxxxxx-x number&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;and paste this into the index.template.html inside of the body element&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;script type="text/javascript"&amp;gt;
&amp;nbsp;&amp;nbsp; var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
&amp;nbsp;&amp;nbsp; document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
&amp;nbsp; &amp;lt;/script&amp;gt;
&amp;nbsp; &amp;lt;script type="text/javascript"&amp;gt;
&amp;nbsp;&amp;nbsp; try {
&amp;nbsp;&amp;nbsp;&amp;nbsp; var pageTracker = _gat._getTracker("UA-xxxxxxx-x");
&amp;nbsp;&amp;nbsp;&amp;nbsp; pageTracker._trackPageview();
&amp;nbsp;&amp;nbsp; } catch(err) {}
&amp;nbsp; &amp;lt;/script&amp;gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:30:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134135#M4428</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-11T07:30:32Z</dc:date>
    </item>
    <item>
      <title>Re: Google Analytics and FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134136#M4429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks, Robert!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Does this work okay with a Reverse Proxy?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Nov 2010 20:57:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134136#M4429</guid>
      <dc:creator>MicheleDunham</dc:creator>
      <dc:date>2010-11-23T20:57:44Z</dc:date>
    </item>
    <item>
      <title>Re: Google Analytics and FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134137#M4430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Michele,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Yep I use reverse proxy as well.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Nov 2010 21:15:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134137#M4430</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2010-11-23T21:15:55Z</dc:date>
    </item>
    <item>
      <title>Re: Google Analytics and FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134138#M4431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I use it on my site directly from within flex. (not flexviewer though)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Like the link that Gady provided.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This allows you to log flex events as "pages" in google analytics.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;eg Each time a user clicks on the print button, it is logged as a "page" in google analytics.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To use in flexviewer you would have to set the "tracker" as a global variable.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Then each event you want to log as a page, you would use tracker.trackPageview( "/PrintButton")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Where the argument is the page name logged in Analytics.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is useful to find out what functionality is being used on our site, what is not being used.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Then you can ask questions like why is it not being used, hard to find, too many clicks, not user friendly etc.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Very useful tool. We have been using it for over 12 months.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;See attached for an example of the output I get.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Nov 2010 02:43:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134138#M4431</guid>
      <dc:creator>MarkHoyland</dc:creator>
      <dc:date>2010-11-24T02:43:00Z</dc:date>
    </item>
    <item>
      <title>Re: Google Analytics and FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134139#M4432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Mark,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; I am not sure what you mean by this &lt;/SPAN&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I use it on my site directly from within flex. (not flexviewer though)&lt;/BLOCKQUOTE&gt;&lt;SPAN&gt; If you are not putting it into your index.template.html that where are you putting it?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Nov 2010 11:09:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134139#M4432</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2010-11-24T11:09:19Z</dc:date>
    </item>
    <item>
      <title>Re: Google Analytics and FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134140#M4433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;@Robert&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The code you posted just tells Google Analytics when the HTML wrapper is accessed, correct? The link I posted integrates Analytics inside the Flex app, so as you "navigate" around in the app, statistics are sent to Google, not just on the HTML wrapper load.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Nov 2010 16:06:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134140#M4433</guid>
      <dc:creator>GadyPitaru</dc:creator>
      <dc:date>2010-11-24T16:06:55Z</dc:date>
    </item>
    <item>
      <title>Re: Google Analytics and FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134141#M4434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Gady,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Thanks I will start figuring out how to put this into FlexViewer. It will be good to know which widgets people are using the most.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Nov 2010 16:22:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134141#M4434</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2010-11-24T16:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: Google Analytics and FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134142#M4435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Robert,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Sorry, I re read my previous post and its not very clear at all.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The method you are using is the Google Analytics Javascript api, that can be put in html pages.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There is also a Google Analytics Action Script 3 api available, analytics.swc, that can be put in the libs folder of a flex project. The calls to Google analytics can be made from within the flex application's actionscript code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can see in my sample report that I am logging a lot of things. The base layers that are being used, the buttons that are being used, the searches that are being used etc.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Each out to there own analytics page.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Well worth the effort to see how the site is being used or how it could potentially be better. (and managers love reports with graphs &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt; )&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is the concept of what you could do in FlexViewer. Within each widget you could use tracker.trackPageview( "/&lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;pagename&lt;/SPAN&gt;&lt;SPAN&gt;").&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The simple code below would create 4 "pages" in the google analytics report.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Pages: &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Initial, &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Widget1_load, &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Widget1_table,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Widget2_load&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;
&amp;lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" 
&amp;nbsp;&amp;nbsp;&amp;nbsp; minWidth="955" minHeight="600"
&amp;nbsp;&amp;nbsp;&amp;nbsp; addedToStage="onComplete()"&amp;gt;
 
 &amp;lt;mx:Script&amp;gt;
&amp;nbsp; &amp;lt;![CDATA[
&amp;nbsp;&amp;nbsp; import com.google.analytics.GATracker;
&amp;nbsp;&amp;nbsp; import com.google.analytics.AnalyticsTracker;
&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; public var tracker:AnalyticsTracker;
&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; private function onComplete():void
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; tracker = new GATracker( this, "UA-111-222", "AS3", false );
&amp;nbsp;&amp;nbsp;&amp;nbsp; tracker.trackPageview( "/Initial");
&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; protected function b1_clickHandler(event:MouseEvent):void
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; tracker.trackPageview( "/Widget1_load");
&amp;nbsp;&amp;nbsp; }

&amp;nbsp;&amp;nbsp; protected function b2_clickHandler(event:MouseEvent):void
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; tracker.trackPageview( "/Widget1_table");
&amp;nbsp;&amp;nbsp; }

&amp;nbsp;&amp;nbsp; protected function b3_clickHandler(event:MouseEvent):void
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; tracker.trackPageview( "/Widget2_load");
&amp;nbsp;&amp;nbsp; }
&amp;nbsp; ]]&amp;gt;
 &amp;lt;/mx:Script&amp;gt;
 &amp;lt;mx:Panel id="p1"&amp;gt;
&amp;nbsp; &amp;lt;mx:Button id="W1_load" click="b1_clickHandler(event)"/&amp;gt;
&amp;nbsp; &amp;lt;mx:Button id="W1_table" click="b2_clickHandler(event)"/&amp;gt;
&amp;nbsp; &amp;lt;mx:Button id="W2_load" click="b3_clickHandler(event)"/&amp;gt;
 &amp;lt;/mx:Panel&amp;gt;
 
&amp;lt;/mx:Application&amp;gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:30:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134142#M4435</guid>
      <dc:creator>MarkHoyland</dc:creator>
      <dc:date>2021-12-11T07:30:35Z</dc:date>
    </item>
    <item>
      <title>Re: Google Analytics and FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134143#M4436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am having trouble using it. When I first tried to set it up, I received an error (See the attachment) saying that the URL was not correct.&amp;nbsp; Below is the URL to my mapping application.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://74.116.50.125/agcmap/index.html"&gt;http://74.116.50.125/agcmap/index.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Nov 2010 16:02:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134143#M4436</guid>
      <dc:creator>JoshCalhoun1</dc:creator>
      <dc:date>2010-11-29T16:02:29Z</dc:date>
    </item>
    <item>
      <title>Without Flex code you miss most of the action and QUESTIONS.  Re: GA and FV 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134144#M4437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I will definitely be implementing the Google Analytics Flex Code Snippets in the near future.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've been using the code in the HTML wrapper for some time and have been very frustrated that much/most of the apparent traffic on my site is not caught by Google Analytics!&amp;nbsp; I know this because the Reverse Proxy log shows many long visits that don't even appear in the Google Analytics logs or which show up as a visit of 00:00:01, when the RP logs show them on the site for 5-10 minutes.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;At this point I'm just trying to find out how much time people are spending on the site.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;QUESTIONS:&lt;BR /&gt;Is there a "best place" to put the Flex code snippet to catch most of the action or do I need to put it in all of the widgets, too?&amp;nbsp; &lt;BR /&gt;Can I just put it in the Config.xml to get most things?&lt;BR /&gt;I'm still at Flex View 1.3.&amp;nbsp; Is that a problem?&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;David&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Mar 2011 14:23:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134144#M4437</guid>
      <dc:creator>DavidWheelock</dc:creator>
      <dc:date>2011-03-11T14:23:12Z</dc:date>
    </item>
    <item>
      <title>Re: Google Analytics and FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134145#M4438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I loaded the compiled version in our Flex 2.5 version ... and when i open the viewer the hour glass runs endlessly.&amp;nbsp; Any suggestions?&amp;nbsp; Thanks much.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Sep 2012 21:11:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134145#M4438</guid>
      <dc:creator>ValerieHanson</dc:creator>
      <dc:date>2012-09-06T21:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: Google Analytics and FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134146#M4439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I loaded the compiled version in our Flex 2.5 version ... and when i open the viewer the hour glass runs endlessly.&amp;nbsp; Any suggestions?&amp;nbsp; Thanks much.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm in the same boat ... I've tried loading the compiled widget in both the 2.3 an 3.0 versions. Same thing, the hour glass runs endlessly.&amp;nbsp; Additionally the mapswitcher widget, the navigation widget, and all the widget buttons at the top at the top fail to load.&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The issue seems to be related to the compiled version ... but I have no clue how to remedy this.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jun 2013 13:56:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134146#M4439</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2013-06-10T13:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: Google Analytics and FlexViewer 2.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134147#M4440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Bumping this because I still cannot get this to cooperate.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Even tried it on Flex Viewer 2.5 for good measure ... and the same results, the top banner hangs and the clock just spins.&amp;nbsp; I have noted that the "hanging" seems to occur whenever I add the following&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;&amp;lt;widget config="widgets/GoogleAnalytics/GoogleAnalyticsWidget.xml" url="widgets/GoogleAnalytics/GoogleAnalyticsWidget.swf"/&amp;gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;under the &amp;lt;!-- UI elements --&amp;gt; section of the config.xml file.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jul 2013 18:09:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/google-analytics-and-flexviewer-2-1/m-p/134147#M4440</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2013-07-02T18:09:45Z</dc:date>
    </item>
  </channel>
</rss>

