I traced the problem back the laszlo versions and turns out that my examples
work with 4.7 but not 4.9 and up.
I think this is a pretty serious bug.
- rami
On 09/21/2011 03:27 PM, Rami Ojares / AMG wrote:
I even added a handler that listens to mousewheelevents from lz.Keys
but I get nothing!
The following code shows that keyboard events are received but not the
mousewheeldelta events.
<canvas>
<handler name="onmousewheeldelta" reference="lz.Keys"
args="delta"><![CDATA[
Debug.debug("Delta = %w", delta);
]]></handler>
<handler name="onkeyevent" reference="lz.Keys" args="key"><![CDATA[
Debug.debug("Key = %w", key);
]]></handler>
</canvas>
Can someone verify this?
I am using flash version 10.3.183.7 on windows and linux.
- rami
On 09/21/2011 03:01 PM, Rami Ojares / AMG wrote:
Hi Amy,
I started by adding mousewheelactive="true" to both scrollbars.
Then only one of them.
No luck.
Then I set the text component explicitly as the scrolltarget
That's when the vertical scrollbar moved from right to left?!?
I tried experimenting with focusview and focusable but I got nothing.
(I don't even know what role the focus plays in receiving mousewheel
events).
So if someone could show me a piece of code where the mousewheel moves
the scrollbars I would be delighted.
- rami