• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
Locked
1

iOS 7 - StageText with Siri/Dictation doesn't work (?)

Community Beginner ,
Nov 25, 2013 Nov 25, 2013

Copy link to clipboard

Copied

Hi,

if you enter the focus on a StageText and then start a dictation with Siri, ecc. you will notice the component is stucked and the app too.

Am I the only one to experience that? I work on Flex, maybe is it a Flex SDK problem?

Thanks

Andrea

TOPICS
Development

Views

1.7K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jun 06, 2014 Jun 06, 2014

Copy link to clipboard

Copied

I am seeing similar in AIR 4.0 and 13. If I create a basic stagetextfield (via Starling) and, when using the app, use the siri/dictation feature and simply say "test", it will fill the text in the textfield. Sometimes it will crash right there, but other times it will crash as soon as I hit the dictation button again.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Jun 09, 2014 Jun 09, 2014

Copy link to clipboard

Copied

We are able to reproduce the issue with Starling and now investigating it.

Thanks for reporting,

Nimit

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jun 10, 2014 Jun 10, 2014

Copy link to clipboard

Copied

Thanks for looking into it. With Starling, I noticed that it happens when there is another display element on the stage (such as a Quad). I have reported it on the Starling forums as well:

TextInput + Quad + Siri Dictation = Crash on iOS7 « Starling Forum

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jul 01, 2014 Jul 01, 2014

Copy link to clipboard

Copied

Is there a bug or ticket ID we can follow to see when this is resolved?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Oct 27, 2014 Oct 27, 2014

Copy link to clipboard

Copied

LATEST

Hello

try solution copied form TextInput + Quad + Siri Dictation = Crash on iOS7 « Starling Forum

as3Tf= new TextField(); // flash.text.TextField

as3Tf.defaultTextFormat = new TextFormat("Arial", 30);

as3Tf.width = stage.fullScreenWidth;

as3Tf.height = stage.fullScreenHeight;

as3Tf.selectable = false;

as3Tf.mouseEnabled = false;

Starling.current.nativeOverlay.addChild(as3Tf);

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines