| 67 | | <mx:TextArea x="0" y="20" width="100%" height="20" id="postarea" /> |
|---|
| 68 | | |
|---|
| 69 | | <mx:TabNavigator x="0" y="40" width="100%" height="60%" |
|---|
| 70 | | focusAlpha="0.6" |
|---|
| 71 | | horizontalAlign="left" |
|---|
| 72 | | > |
|---|
| 73 | | <mx:VBox label="recent"> |
|---|
| 74 | | <mx:DataGrid x="0" y="20" dataProvider="{tlrecent}"> |
|---|
| 75 | | <mx:columns> |
|---|
| 76 | | <!-- |
|---|
| 77 | | <mx:DataGridColumn headerText="画像" dataField="image" width="40"> |
|---|
| 78 | | <mx:itemRenderer> |
|---|
| 79 | | <mx:Component><mx:Image width="32" height="32"/></mx:Component> |
|---|
| 80 | | </mx:itemRenderer> |
|---|
| 81 | | </mx:DataGridColumn> |
|---|
| 82 | | --> |
|---|
| 83 | | <mx:DataGridColumn headerText="username" dataField="voice" width="100"/> |
|---|
| 84 | | <mx:DataGridColumn headerText="userid" dataField="voiceid" width="60"/> |
|---|
| 85 | | <mx:DataGridColumn headerText="content" dataField="content" wordWrap="true"/> |
|---|
| 86 | | <mx:DataGridColumn headerText="postedtime" dataField="postedtime" width="100" /> |
|---|
| 87 | | </mx:columns> |
|---|
| 88 | | </mx:DataGrid> |
|---|
| 89 | | </mx:VBox> |
|---|
| | 81 | <mx:VBox x="0" y="0" width="100%" height="100%"> |
|---|
| | 82 | <mx:HBox x="0" y="0" width="100%" verticalScrollPolicy="off"> |
|---|
| | 83 | <mx:TextArea width="80%" height="20" id="postarea" /> |
|---|
| | 84 | <mx:Button width="20%" height="20" label="post" click="onPostClick();" /> |
|---|
| | 85 | </mx:HBox> |
|---|
| 91 | | <mx:VBox label="reply"> |
|---|
| 92 | | <mx:DataGrid x="0" y="20" dataProvider="{tlreply}"> |
|---|
| 93 | | <mx:columns> |
|---|
| 94 | | <!-- |
|---|
| 95 | | <mx:DataGridColumn headerText="画像" dataField="image" width="40"> |
|---|
| 96 | | <mx:itemRenderer> |
|---|
| 97 | | <mx:Component><mx:Image width="32" height="32"/></mx:Component> |
|---|
| 98 | | </mx:itemRenderer> |
|---|
| 99 | | </mx:DataGridColumn> |
|---|
| 100 | | --> |
|---|
| 101 | | <mx:DataGridColumn headerText="username" dataField="voice" width="100"/> |
|---|
| 102 | | <mx:DataGridColumn headerText="userid" dataField="voiceid" width="60"/> |
|---|
| 103 | | <mx:DataGridColumn headerText="content" dataField="content" wordWrap="true"/> |
|---|
| 104 | | <mx:DataGridColumn headerText="postedtime" dataField="postedtime" width="100" /> |
|---|
| 105 | | </mx:columns> |
|---|
| 106 | | </mx:DataGrid> |
|---|
| 107 | | </mx:VBox> |
|---|
| 108 | | </mx:TabNavigator> |
|---|
| 109 | | |
|---|
| | 87 | <mx:VDividedBox width="100%"> |
|---|
| | 88 | <mx:VBox width="100%" verticalScrollPolicy="off"> |
|---|
| | 89 | <mx:HBox width="100%" height="20" > |
|---|
| | 90 | <mx:Label width="50%" text="にゃー" id="friendname" textAlign="left" /> |
|---|
| | 91 | <mx:Label width="50%" text="( ゚д゚)" id="friendposttime" textAlign="right" /> |
|---|
| | 92 | </mx:HBox> |
|---|
| | 93 | <mx:TextArea width="100%" height="50%" id="friendpost" editable="false" /> |
|---|
| | 94 | </mx:VBox> |
|---|
| | 95 | <mx:VBox width="100%" verticalScrollPolicy="off"> |
|---|
| | 96 | <mx:TabBar x="0" y="100" width="100%" height="20" |
|---|
| | 97 | horizontalAlign="left" |
|---|
| | 98 | dataProvider="{tablist}" |
|---|
| | 99 | /> |
|---|
| | 100 | |
|---|
| | 101 | <mx:DataGrid x="0" y="120" width="100%" dataProvider="{tlrecent}" |
|---|
| | 102 | fontFamily="MS Pゴシック" |
|---|
| | 103 | fontSize="12" |
|---|
| | 104 | paddingBottom="-4" |
|---|
| | 105 | paddingTop="-4" |
|---|
| | 106 | paddingLeft="0" |
|---|
| | 107 | sortableColumns="false" |
|---|
| | 108 | itemClick="onItemClick(event);" |
|---|
| | 109 | > |
|---|
| | 110 | <mx:columns> |
|---|
| | 111 | <!-- |
|---|
| | 112 | <mx:DataGridColumn headerText="画像" dataField="image" width="40"> |
|---|
| | 113 | <mx:itemRenderer> |
|---|
| | 114 | <mx:Component><mx:Image width="32" height="32"/></mx:Component> |
|---|
| | 115 | </mx:itemRenderer> |
|---|
| | 116 | </mx:DataGridColumn> |
|---|
| | 117 | --> |
|---|
| | 118 | <mx:DataGridColumn headerText="username" dataField="voice" width="70"/> |
|---|
| | 119 | <mx:DataGridColumn headerText="userid" dataField="voiceid" width="40"/> |
|---|
| | 120 | <mx:DataGridColumn headerText="content" dataField="content" width="100" wordWrap="true" /> |
|---|
| | 121 | <mx:DataGridColumn headerText="postedtime" dataField="postedtime" width="70" /> |
|---|
| | 122 | </mx:columns> |
|---|
| | 123 | </mx:DataGrid> |
|---|
| | 124 | </mx:VBox> |
|---|
| | 125 | </mx:VDividedBox> |
|---|
| | 126 | </mx:VBox> |
|---|