看板 Flash 關於我們 聯絡資訊
測試一下AIR2.6可以在全螢幕下打中文 Win7 新注音2010 Flash Builder 4.5 package { import flash.desktop.NativeApplication; import flash.display.Sprite; import flash.display.StageDisplayState; import flash.system.Capabilities; import flash.text.TextField; import flash.text.TextFieldType; [SWF(width="300", height="200")] public class Main extends Sprite { public function Main() { trace(NativeApplication.nativeApplication.runtimeVersion); // 2.6.0.19120 trace(Capabilities.version); // WIN 10,2,153,1 stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE; var txt:TextField = new TextField(); txt.type = TextFieldType.INPUT; txt.multiline = true; txt.border = true; txt.x = txt.y = 50; txt.width = 200, txt.height = 100; addChild(txt); } } } ※ 引述《fake01 (ya da)》之銘言: : 我加了stage.displayState=StageDisplayState.FULL_SCREEN_INTERACTIVE; : 且也用air 2輸出檔案,但是還是不行在文字方塊打字,到底開如何解決呢? : 拜託各位了。 -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 118.165.8.104
Jerrynet:Ticore耶~~~膜拜一下<(_ _)> 10/01 18:27
fake01:不好意思 我是使用FALSH 本身內建的 圖形介面那個寫 10/09 03:28
fake01:我會先嘗試用 Builder 試試看 10/09 03:29
fake01:但是看起來 是發怖成2.6AIR的關係 10/09 03:31
fake01:我剛嘗試使用 Professional 發布程2.6air方式 使用 還是無 10/09 03:33
fake01:法 10/09 03:33
fake01:請問如果用Professional 該怎麼用呢? 因為我已經把專案寫好 10/09 03:37
fake01:差 全螢幕了 :) 謝謝您 10/09 03:37
ticore:我用 Flash CS5.5 測試也是能輸入中文 10/16 01:50
ticore:有用上面的程式測試過嗎? 10/16 01:51