Josh Tynjala

Results 511 comments of Josh Tynjala

I'm hoping that the AIR KeyboardEvent on tvOS has the keyLocation property set to KeyLocation.D_PAD when the directional keys are pressed on the remote. That would make it easier for...

I see from [Apple's documentation for the Siri remote](https://support.apple.com/en-us/HT205305) that it doesn't have a d-pad. It uses swipe gestures for navigation. That makes it a little more interesting. Feathers would...

> I was also assuming you might just use AIR's planned mappings for tvOS as documented in their release notes: using TransformGestureEvent.GESTURE_DIRECTIONAL_TAP and TransformGestureEvent.GESTURE_SWIPE I hadn't read the the tvOS...

I should mention that tvOS support is stalled until Gamua/Adobe-Runtime-Support#11 is addressed. I don't recall closing this, as it was meant to be left open until I could address tvOS...

I cannot reproduce this issue. With the following code and AIR 23, the initial selectionBeginIndex and selectionEndIndex are 0. On focus, they may change to a different value, but they...

Thanks! That was the extra information that I needed. It looks like the selectionAnchorIndex and selectionActiveIndex properties on StageText are returning -1. This is an AIR bug.

The following code is able to reproduce this issue with StageText only: ``` var x:Number = 10; var y:Number = 10; var w:Number = 200; var h:Number = 100; this.graphics.beginFill(0xcccccc);...

I opened a bug report with Adobe: [#4197297](https://bugbase.adobe.com/index.cfm?event=bug&id=4197297) I received the following response: > As per the documentation at http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/text/StageText.html > These properties are not supported for non-multiline StageText objects...

Thanks! I'll take a look when I get a chance.

Is this in reference to StageTextTextEditor? You should be able to listen for keyboard events when using other text editors, but for some reason, StageText prevents keyboard events from reaching...