Unicode Text with ios10
Since ios10 Unicode in Text doesn't work...
e.g.
mytext.text= "\u2692";
why?
Since ios10 Unicode in Text doesn't work...
e.g.
mytext.text= "\u2692";
why?
Hi Thomas,
We tried with a sample application and figured that problem could be resolved if we use stageText. Please refer to the below code snippet:
package {
import flash.display.Sprite;
import flash.geom.Rectangle;
import flash.text.StageText;
public class StageTextMulti extends Sprite {
private var label1:StageText;
public function StageTextMulti() {
configurationLabel();
}
private function configureLabel():void {
label1 = new StageText();
label1.text = "\u2692";
label1.color = 0xFF0000
label1.fontSize = 30;
label1.stage = stage;
label1.viewPort = new Rectangle(20, 20, 90, 90);
}
}
}
However, We are investigating it further for TextField on iOS 10.
Thanks,
Adobe AIR Team
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.