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

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

Community Beginner ,
Nov 25, 2013 Nov 25, 2013

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
1.8K
Translate
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

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.

Translate
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

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

Thanks for reporting,

Nimit

Translate
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

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

Translate
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

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

Translate
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
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);

Translate
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