<?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: How to stop the wheel event propagation in ArcGIS API for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-stop-the-wheel-event-propagation/m-p/151619#M3545</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;fix it&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;private function init():&lt;SPAN style="color:&amp;quot;#FF0000&amp;quot;;"&gt;void&lt;/SPAN&gt;
{
&amp;nbsp;&amp;nbsp; //...
&amp;nbsp;&amp;nbsp; initWheelEvents();
}&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;if not success, please show your code (ViewerContainer.mxml as it is)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;UPD - &lt;/SPAN&gt;&lt;A href="http://www.vr.fi/en/index/aikataulut/livetrainmap.html" rel="nofollow noopener noreferrer" target="_blank"&gt;working application&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 08:08:11 GMT</pubDate>
    <dc:creator>IvanBespalov</dc:creator>
    <dc:date>2021-12-11T08:08:11Z</dc:date>
    <item>
      <title>How to stop the wheel event propagation</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-stop-the-wheel-event-propagation/m-p/151609#M3535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi !&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have the flex application (actually, the modified flex viewer) shown inside the iframe on the other page.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;When I use wheel to zoom in/out, and the outer page has scroll bar - the wheel event bubbles to this outer page and it is scrolled.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'd like to disable the wheel event propagation when the mouse pointer is over map.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there simple conventional way to do it ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Gennady&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Dec 2011 06:46:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-stop-the-wheel-event-propagation/m-p/151609#M3535</guid>
      <dc:creator>GennadyOster</dc:creator>
      <dc:date>2011-12-25T06:46:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop the wheel event propagation</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-stop-the-wheel-event-propagation/m-p/151610#M3536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Gennady,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Have you tried &lt;/SPAN&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;evt.preventDefault();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; evt.stopImmediatePropagation();&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 08:08:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-stop-the-wheel-event-propagation/m-p/151610#M3536</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-11T08:08:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop the wheel event propagation</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-stop-the-wheel-event-propagation/m-p/151611#M3537</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;Thank you very much for your help,&amp;nbsp; and sorry for delay.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried to play with wheel event and reached the 50% of success &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; : now I can switch off the wheel action on the map, but I still cannot do it for the browser window.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I played with the event listener parameters (priority, event phase) with no success.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is what I did in the index.mxml of the Flex viewer:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;lt;s:Application ......... 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; creationComplete="init();"&amp;gt;

......

&amp;nbsp; private function init() : void{
&amp;nbsp;&amp;nbsp; mapManager.map.addEventListener(MouseEvent.MOUSE_WHEEL,onMouseWheel,false,0);
&amp;nbsp; }
&amp;nbsp; private function onMouseWheel(evt:MouseEvent):void{
&amp;nbsp;&amp;nbsp; evt.preventDefault();
&amp;nbsp;&amp;nbsp; evt.stopPropagation();
&amp;nbsp; }
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Am I doing something wrong ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Gennady&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;P.S. I've used the stopImmediatePropagation too with the same result. Gena&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 08:08:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-stop-the-wheel-event-propagation/m-p/151611#M3537</guid>
      <dc:creator>GennadyOster</dc:creator>
      <dc:date>2021-12-11T08:08:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop the wheel event propagation</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-stop-the-wheel-event-propagation/m-p/151612#M3538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Gennady,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; To prevent the default browser scrolling requires some Googling and custom JavaScript code as that really has nothing to do with flex.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://stackoverflow.com/questions/2005339/disable-mouse-wheel-scrolling-while-cursor-over-flex-app"&gt;http://stackoverflow.com/questions/2005339/disable-mouse-wheel-scrolling-while-cursor-over-flex-app&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Dec 2011 13:42:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-stop-the-wheel-event-propagation/m-p/151612#M3538</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2011-12-28T13:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop the wheel event propagation</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-stop-the-wheel-event-propagation/m-p/151613#M3539</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;BR /&gt;&lt;SPAN&gt;Thanks. I'll give it a try.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Sure I googled before posting to the forum, but missed this post somehow.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Gennady&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Dec 2011 13:51:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-stop-the-wheel-event-propagation/m-p/151613#M3539</guid>
      <dc:creator>GennadyOster</dc:creator>
      <dc:date>2011-12-28T13:51:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop the wheel event propagation</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-stop-the-wheel-event-propagation/m-p/151614#M3540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Here's a similar solution:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://forums.esri.com/Thread.asp?c=158&amp;amp;f=2421&amp;amp;t=274624#871027"&gt;http://forums.esri.com/Thread.asp?c=158&amp;amp;f=2421&amp;amp;t=274624#871027&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2012 16:26:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-stop-the-wheel-event-propagation/m-p/151614#M3540</guid>
      <dc:creator>DasaPaddock</dc:creator>
      <dc:date>2012-01-03T16:26:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop the wheel event propagation</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-stop-the-wheel-event-propagation/m-p/151615#M3541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks, Dasa !&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've already used the&lt;/SPAN&gt;&lt;A href="http://code.google.com/p/mousewheeltrap/" rel="nofollow"&gt; &lt;SPAN style="color:&amp;quot;darkorchid&amp;quot;;"&gt;mousewheeltrap&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt; solution. &lt;/SPAN&gt;&lt;STRONG&gt;For me&lt;/STRONG&gt;&lt;SPAN&gt; it has two great advantages: (i) I don't need to deal with "the host Party", 'cause the whole solution is inside Flex application, and (ii) I don't need to deal with dojo.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Nevertheless - thank you very much for your attention and help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Gennady&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jan 2012 05:02:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-stop-the-wheel-event-propagation/m-p/151615#M3541</guid>
      <dc:creator>GennadyOster</dc:creator>
      <dc:date>2012-01-04T05:02:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop the wheel event propagation</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-stop-the-wheel-event-propagation/m-p/151616#M3542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Gennady, may be &lt;/SPAN&gt;&lt;A href="http://etcs.ru/pre/MouseWheelCatcher/srcview/" rel="nofollow noopener noreferrer" target="_blank"&gt;this code&lt;/A&gt;&lt;SPAN&gt; is not better solution but &lt;/SPAN&gt;&lt;A href="http://www.vr.fi/fi/index/aikataulut/junatkartalla.html" rel="nofollow noopener noreferrer" target="_blank"&gt;it&lt;/A&gt;&lt;SPAN&gt; works without JS.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1 - We just added &lt;/SPAN&gt;&lt;A href="http://etcs.ru/pre/MouseWheelCatcher/srcview/" rel="nofollow noopener noreferrer" target="_blank"&gt;MouseWheel.as&lt;/A&gt;&lt;SPAN&gt; in to workspace as it is. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2 - in FlexViewer -&amp;gt; ViewerContainer.mxml added:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN style="font-size:&amp;quot;1&amp;quot;;"&gt;// inside ViewerContainer.mxml &amp;lt;Script&amp;gt; tag

/**
 * Listen creation complete handler
 */
private function init():
{
&amp;nbsp;&amp;nbsp; //...
&amp;nbsp;&amp;nbsp; initWheelEvents();
}

/**
 * Init mouse wheel events listeners
 */
protected function initWheelEvents():void
{
&amp;nbsp;&amp;nbsp;&amp;nbsp; if (mapManager &amp;amp;&amp;amp; mapManager.map)
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mapManager.map.addEventListener(MouseEvent.ROLL_OVER, mouseWheelOver);
 mapManager.map.addEventListener(MouseEvent.ROLL_OUT, mouseWheelOut);
&amp;nbsp;&amp;nbsp; }
}

/**
 * mouse wheel out handler
 */
protected function mouseWheelOut(event:MouseEvent):void
{
&amp;nbsp;&amp;nbsp;&amp;nbsp; MouseWheel.release();
}
&amp;nbsp;&amp;nbsp; 
/**
 * mouse wheel over handler
 */
protected function mouseWheelOver(event:MouseEvent):void
{
&amp;nbsp;&amp;nbsp;&amp;nbsp; MouseWheel.capture();
}&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 08:08:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-stop-the-wheel-event-propagation/m-p/151616#M3542</guid>
      <dc:creator>IvanBespalov</dc:creator>
      <dc:date>2021-12-11T08:08:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop the wheel event propagation</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-stop-the-wheel-event-propagation/m-p/151617#M3543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Ivan !&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks. I'll give it a try a little bit later - even if not to implement, but at least to&lt;/SPAN&gt;&lt;STRONG&gt; learn &lt;/STRONG&gt;&lt;SPAN&gt;what and &lt;/SPAN&gt;&lt;STRONG&gt;how&lt;/STRONG&gt;&lt;SPAN&gt; you did it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Gennady&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jan 2012 06:13:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-stop-the-wheel-event-propagation/m-p/151617#M3543</guid>
      <dc:creator>GennadyOster</dc:creator>
      <dc:date>2012-01-04T06:13:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop the wheel event propagation</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-stop-the-wheel-event-propagation/m-p/151618#M3544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Ivan,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I somehow can't get this to work...? We are using flexviewer 2.4 and I want to disable scrolling for instance here:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.pbl.nl/en/roadsfromrio/trends-in-biodiversity-loss"&gt;http://www.pbl.nl/en/roadsfromrio/trends-in-biodiversity-loss&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;* So you put the MouseWheel.as in it's own place under com.ru.etcs.ui&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;* import it in the viewercontainer.mxml&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;* put the code from your message in the script (for instance: under the import?)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For some reason I get errors on "expecting an identifier before the left bracket" at the init() function?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for any help!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Johan&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2013 13:03:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-stop-the-wheel-event-propagation/m-p/151618#M3544</guid>
      <dc:creator>JohanMeijer</dc:creator>
      <dc:date>2013-02-11T13:03:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop the wheel event propagation</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-stop-the-wheel-event-propagation/m-p/151619#M3545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;fix it&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;private function init():&lt;SPAN style="color:&amp;quot;#FF0000&amp;quot;;"&gt;void&lt;/SPAN&gt;
{
&amp;nbsp;&amp;nbsp; //...
&amp;nbsp;&amp;nbsp; initWheelEvents();
}&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;if not success, please show your code (ViewerContainer.mxml as it is)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;UPD - &lt;/SPAN&gt;&lt;A href="http://www.vr.fi/en/index/aikataulut/livetrainmap.html" rel="nofollow noopener noreferrer" target="_blank"&gt;working application&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 08:08:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-stop-the-wheel-event-propagation/m-p/151619#M3545</guid>
      <dc:creator>IvanBespalov</dc:creator>
      <dc:date>2021-12-11T08:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop the wheel event propagation</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-stop-the-wheel-event-propagation/m-p/151620#M3546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Ivan,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Really like the Live train map! Any chance you share some tips on how it works, live updates on AGS services? &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the fix, that did it! No more scrolling at &lt;/SPAN&gt;&lt;A href="http://www.pbl.nl/en/roadsfromrio/trends-in-biodiversity-loss"&gt;http://www.pbl.nl/en/roadsfromrio/trends-in-biodiversity-loss&lt;/A&gt;&lt;SPAN&gt;. I thought I had tried it, but browsercaching is also terrible here when debugging flex/flash applications...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To get it to work I also had to add:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;init();&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;to the &lt;/SPAN&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;private function creationCompleteHandler():void&lt;/PRE&gt;&lt;SPAN&gt; This is loaded at creationComplete (see s:application at the top of the mxml)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Johan&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2013 19:41:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-stop-the-wheel-event-propagation/m-p/151620#M3546</guid>
      <dc:creator>JohanMeijer</dc:creator>
      <dc:date>2013-02-11T19:41:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop the wheel event propagation</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-stop-the-wheel-event-propagation/m-p/151621#M3547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; I thought I had tried it, but browsercaching is also terrible here when debugging flex/flash applications...&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Find&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;C:\Users\User Name\mm.cfg (if file doesn't exist create it)&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://jpauclair.net/2010/02/10/mmcfg-treasure/"&gt;How to change flash player debugger configuration file&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2013 12:57:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-stop-the-wheel-event-propagation/m-p/151621#M3547</guid>
      <dc:creator>IvanBespalov</dc:creator>
      <dc:date>2013-02-12T12:57:11Z</dc:date>
    </item>
  </channel>
</rss>

