チェンジセット 1795: as3/gunyarapaint/trunk
- コミット日時:
- 2008/11/08 00:29:24 (5 年前)
- ファイル:
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
as3/gunyarapaint/trunk/gunyarapaint/src/gunyarapaint.as
r1794 r1795 1 private const DEBUG:Boolean = true;1 private const DEBUG:Boolean = false; 2 2 3 3 import flash.display.InteractiveObject; … … 297 297 fromTextInput.text, 298 298 messageTextArea.text, 299 watchlistCheckBox.selected, 299 300 oekakiId, 300 301 _logger.dataForPost, as3/gunyarapaint/trunk/gunyarapaint/src/gunyarapaint.mxml
r1691 r1795 12 12 </mx:Script> 13 13 <mx:Canvas id="toolCanvas" x="0" y="0" width="685" height="102"> 14 <mx:Label id="versionLabel" x="238" y="9" text="ver.2008102301"/>15 14 <mx:Label x="28" y="7" text="名前"/> 16 15 <mx:TextInput id="fromTextInput" x="55" y="3" maxChars="32" fontSize="14" focusThickness="0"/> 16 <mx:CheckBox id="watchlistCheckBox" x="223" y="7" label="ウォッチリストに登録"/> 17 17 <mx:Label x="10" y="51" text="書き込み"/> 18 18 <mx:TextArea id="messageTextArea" x="55" y="33" width="406" height="61" fontSize="14" focusThickness="0"> … … 42 42 <mx:Button id="windowsResetButton" x="10" y="101" label="ウィンドウ初期状態" width="99" paddingLeft="0" paddingRight="0" paddingTop="0" paddingBottom="0" height="17"/> 43 43 <mx:Button id="passwordButton" x="117" y="101" label="ふっかつのじゅもん" width="99" paddingLeft="0" paddingRight="0" paddingTop="0" paddingBottom="0" height="17" enabled="false"/> 44 <mx:Label id="versionLabel" x="580" y="101" text="ver.2008102301"/> 44 45 </mx:Application> as3/gunyarapaint/trunk/nicopedia/org/libspark/nicopedia/Com.as
r1564 r1795 88 88 } 89 89 90 public function postOekaki(parent:DisplayObject, url:String, magic:String, cookie:String, name:String, msg:String, ref_oekaki_id:uint, data:Object, callback:Function):void { 90 public function postOekaki(parent:DisplayObject, url:String, magic:String, cookie:String, 91 name:String, msg:String, addWatchlist:Boolean, 92 ref_oekaki_id:uint, data:Object, callback:Function):void { 91 93 try { 92 94 _comDialog = new ComDialog(); … … 103 105 v.FROM = name; 104 106 v.MESSAGE = msg; 107 v.watchlist = addWatchlist ? 't' : ''; 105 108 v.ref_oekaki_id = ref_oekaki_id; 106 109 v.log_count = data['info']['log_count']; // TODO: サーバ側で取り出してあげる

