[Laszlo-checkins] r12792 - openlaszlo/trunk/WEB-INF/lps/lfc/kernel/swf9

max@openlaszlo.org max at openlaszlo.org
Sat Feb 7 22:10:47 PST 2009


Author: max
Date: 2009-02-07 22:10:43 -0800 (Sat, 07 Feb 2009)
New Revision: 12792

Modified:
   openlaszlo/trunk/WEB-INF/lps/lfc/kernel/swf9/LFCApplication.as
Log:
Change 20090207-maxcarlson-I by maxcarlson at Bank.lan on 2009-02-07 06:56:52 PST
    in /Users/maxcarlson/openlaszlo/trunk-clean
    for http://svn.openlaszlo.org/openlaszlo/trunk

Summary: Fix mousewheel events in swf9 windows

Bugs Fixed: LPP-7731 - swf9: mousewheel events not working in swf9 on windows

Technical Reviewer: hminsky
QA Reviewer: promanik

Details: Uncomment the event registration for MOUSE_WHEEL - the method was already set up...  braino!

Tests: See LPP-7731



Modified: openlaszlo/trunk/WEB-INF/lps/lfc/kernel/swf9/LFCApplication.as
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/kernel/swf9/LFCApplication.as	2009-02-07 22:24:38 UTC (rev 12791)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/kernel/swf9/LFCApplication.as	2009-02-08 06:10:43 UTC (rev 12792)
@@ -89,11 +89,11 @@
 
         
         /* TODO [hqm 2008-01] Do we want to do anything with other
-         * events, like click, or mousewheel ?
+         * events, like click?
 
            stage.addEventListener(MouseEvent.CLICK, reportClick);
-           stage.addEventListener(MouseEvent.MOUSE_WHEEL, reportWheel);
         */
+        stage.addEventListener(MouseEvent.MOUSE_WHEEL, reportWheel);
 
         LzKeyboardKernel.setCallback(lz.Keys, '__keyEvent');
 



More information about the Laszlo-checkins mailing list