Unicode Text with ios10
since ios10 unicode in text doesn't work...
e.g.
mytext.text= "\u2692";
why?
hi thomas,
we tried sample application , figured problem resolved if use stagetext. please refer 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, investigating further textfield on ios 10.
thanks,
adobe air team
More discussions in AIR Development
adobe
Comments
Post a Comment