feathersui / feathersui-starling

User interface components for Starling Framework and Adobe AIR
https://feathersui.com/learn/as3-starling/
Other
915 stars 386 forks source link

Keyboard navigation is not respecting the ScrollPolicy.OFF #1773

Closed Adrian-S closed 5 years ago

Adrian-S commented 5 years ago

I have a Screen object, that has a child outside the visible area on the right side. I've noticed that if I press RIGHT arrow, screen scrolls and shows me this object and I can't scroll back. Any other key becomes useless after this, and ScrollPolicy is OFF for that screen.

I fixed it using the code below on my screen: override protected function nativeStage_keyDownHandler(event:KeyboardEvent):void { }

joshtynjala commented 5 years ago

I assume that it's actually a PanelScreen or a ScrollScreen rather than a Screen?

Adrian-S commented 5 years ago

Yes, it's a PanelScreen.