japanese input display outside of TextField created into ScrollPane

Posted by soetheingilynn on Stack Overflow See other posts from Stack Overflow or by soetheingilynn
Published on 2010-05-04T10:11:44Z Indexed on 2010/06/03 4:34 UTC
Read the original article Hit count: 180

hello... I'm new to ActionScript 2.0. plz kindly help me. I have created the MainMovieClip and Scrollbar as follow ....

my problem is that when I input japanese characters,the characters display at the top corner of the swf until I confirm the input. how can I do it?? if I install FlashPlayer "flashplayer10_1_rc2_plugin_041910", then the japanese characters display in the textfield normally....why is that???

plz..help me. with flash player 10.0, I can't input the japanese characters in the textfield.

var mcMain:MovieClip = this.createEmptyMovieClip("mcMain", this.getNextHighestDepth()); scrp.contentPath = "scrollMovieClip"; mcMain = scrp.content;

var textholder:TextField = mcMain.createTextField("txt", mcMain.getNextHighestDepth(), 50, 50, 100, 50); mcMain.txt.setFocus(); mcMain.txt.type = "input"; mcMain.txt.wordWrap = true; mcMain.txt.multiline = true; mcMain.txt.background = true; mcMain.txt.border = true; mcMain.txt.selectable = true;

thanks in advanced...anyone.

© Stack Overflow or respective owner

Related posts about flash

Related posts about actionscript