Develop and Download Open Source Software

Browse Subversion Repository

Contents of /NNDDv2/trunk/src/VideoInfoView.mxml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 487 - (show annotations) (download)
Sat Apr 9 13:16:04 2011 UTC (13 years ago) by mineap
File size: 28814 byte(s)
Info画面の設定でスムージングを切り替えられるようにした(FLV/MP4で有効)
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!-- VideoInfoView.mxml -->
4 <!-- Copyright (c) 2008-2009 MAP - MineApplicationProject. All Rights Reserved. -->
5
6 <mx:Window xmlns:mx="http://www.adobe.com/2006/mxml" title="Info"
7 layout="absolute" width="400" height="580" horizontalScrollPolicy="off" verticalScrollPolicy="off"
8 windowComplete="windowCompleteHandler()" closing="windowClosing(event)" windowMove="windowMove(event)" windowResize="windowResized(event)"
9 minWidth="300" minHeight="300" xmlns:ns1="*" activate="window1_activateHandler(event)">
10
11 <mx:Script>
12 <![CDATA[
13 import mx.events.DropdownEvent;
14 import mx.events.IndexChangedEvent;
15
16 import org.mineap.nndd.player.comment.Comments;
17
18 private var thumbImgMenu:ContextMenu;
19 private var thumbImgMenuItem1:ContextMenuItem;
20 private var thumbImgMenuItem2:ContextMenuItem;
21 private var thumbImgMenuItem3:ContextMenuItem;
22 private var thumbImgMenuItem4:ContextMenuItem;
23 private var thumbImgMenuItem5:ContextMenuItem;
24
25 protected function window1_activateHandler(event:Event):void
26 {
27 Mouse.show();
28 }
29
30 protected function image_thumbImg_creationCompleteHandler(event:FlexEvent):void
31 {
32 thumbImgMenu = new ContextMenu();
33
34 thumbImgMenuItem1 = new ContextMenuItem(Message.L_OPEN_DEFAULT_WEB_BROWSER);
35 thumbImgMenuItem1.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, button_goToWebClicked);
36
37 thumbImgMenuItem2 = new ContextMenuItem(Message.L_TWEET, true);
38 thumbImgMenuItem2.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, tweet);
39
40 thumbImgMenuItem3 = new ContextMenuItem(Message.L_ADD_HATENA_BOOKMARK, true);
41 thumbImgMenuItem3.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, addHatenaBookmark);
42
43 thumbImgMenuItem4 = new ContextMenuItem(Message.L_OPEN_NICOSOUND, true);
44 thumbImgMenuItem4.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, openNicoSound);
45
46 thumbImgMenuItem5 = new ContextMenuItem(Message.L_OPEN_NICOMIMI, false)
47 thumbImgMenuItem5.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, openNicomimi);
48
49 thumbImgMenu.customItems.push(thumbImgMenuItem1, thumbImgMenuItem2, thumbImgMenuItem3, thumbImgMenuItem4, thumbImgMenuItem5);
50
51 image_thumbImg.contextMenu = thumbImgMenu;
52
53 }
54
55
56 protected function checkbox_showHtml_rollOverHandler(event:MouseEvent):void
57 {
58 checkbox_showHtml.alpha = 1.0;
59 }
60
61
62 protected function checkbox_showHtml_rollOutHandler(event:MouseEvent):void
63 {
64 checkbox_showHtml.alpha = 0.3;
65 }
66
67
68 protected function checkbox_showHtml_changeHandler(event:Event):void
69 {
70
71 isShowHTMLOwnerComment = checkbox_showHtml.selected;
72
73 //���������������������������
74 var str:String = owner_text_temp;
75 owner_text_temp = owner_text_nico;
76 owner_text_nico = str;
77 }
78
79
80 protected function checkbox_showHtml_creationCompleteHandler(event:FlexEvent):void
81 {
82 checkbox_showHtml.setConstraintValue("backgroundColor", new int("0x000000"));
83
84 }
85
86
87 protected function comboBox_mylist_closeHandler(event:DropdownEvent):void
88 {
89 var index:int = comboBox_mylist.selectedIndex;
90 if(index != -1){
91 ConfigManager.getInstance().setItem("infoViewSelectedMyListIndex", index);
92 }
93 }
94
95
96 protected function button_videoOpen_clickHandler(event:MouseEvent):void
97 {
98 if(videoPlayer != null){
99 videoPlayer.fileOpen();
100 }
101 }
102
103
104 protected function button_oldComment_reload_clickHandler(event:MouseEvent):void
105 {
106 reloadOldComment();
107 }
108
109 public function reloadOldComment():void{
110 playerController.reloadLocalComment(this.oldCommentDate);
111 }
112
113 public function get oldCommentDate():Date{
114 var date:Date = null;
115 if(dateField_oldComment == null){
116 date = null;
117 }else{
118 date = dateField_oldComment.selectedDate;
119 date.hours = numericStepper_hour_oldComment.value;
120 date.minutes = numericStepper_min_oldComment.value;
121 }
122 return date;
123 }
124
125 public function resetOldCommentDate():void{
126 var date:Date = new Date();
127 if(dateField_oldComment != null){
128 dateField_oldComment.selectedDate = date;
129 numericStepper_hour_oldComment.value = date.hours;
130 numericStepper_min_oldComment.value = date.minutes;
131 }
132 }
133
134 protected function dataGrid_oldComment_creationCompleteHandler(event:FlexEvent):void
135 {
136 resetOldCommentDate();
137 }
138
139 protected function tabNavigator_comment_changeHandler(event:IndexChangedEvent):void
140 {
141 // ������������������������������������������������������
142 if(event.oldIndex == 1){
143 playerController.reloadLocalComment();
144 }
145 }
146
147 protected function oldCommentTimeResetButton_clickHandler(event:MouseEvent):void
148 {
149 resetOldCommentDate();
150 }
151
152
153 protected function button_oldComment_reloadFromNico_clickHandler(event:MouseEvent):void
154 {
155 playerController.getOldCommentFromNico(oldCommentDate);
156 }
157
158
159 protected function canvas1_creationCompleteHandler(event:FlexEvent):void
160 {
161 if(videoTypeText.text.length == 0){
162 videoTypeText.text = "-";
163 }
164 if(videoServerUrlText.text.length == 0) {
165 videoServerUrlText.text = "-";
166 }
167 if(connectionTypeText.text.length == 0){
168 connectionTypeText.text = "-";
169 }
170 }
171
172 ]]>
173 </mx:Script>
174
175 <mx:Script source="org/mineap/nndd/view/VideoInfoView.as" />
176
177 <mx:Image id="image_thumbImg" left="5" top="2" scaleContent="true" height="70" click="button_goToWebClicked(event)"
178 toolTip="������������������������������������������������������������" enabled="true" width="92" creationComplete="image_thumbImg_creationCompleteHandler(event)"/>
179
180 <mx:ComboBox left="100" top="53" right="128" id="comboBox_mylist" dataProvider="{myListDataProvider}" close="comboBox_mylist_closeHandler(event)" height="20"></mx:ComboBox>
181 <mx:Button id="button_mylist" right="74" top="53" width="50" height="20" label="������"
182 click="myListAddButtonClicked(event)" toolTip="���������������������������������������������������������������"/>
183 <mx:VRule width="12" height="20" top="53" right="58"/>
184
185 <mx:Button id="button_download" right="5" top="53" width="50" height="20" label="DL"
186 click="button_addDownloadList(event)" toolTip="������������������������������������������������������"/>
187
188 <mx:TextArea left="5" top="75" right="5" height="73" htmlText="{owner_text_nico}" id="textArea_upperOwnerText" link="ownerTextLinkClicked(event)"/>
189 <mx:CheckBox label="HTML" right="20" id="checkbox_showHtml" alpha="0.3" enabled="true" selected="true" rollOver="checkbox_showHtml_rollOverHandler(event)"
190 rollOut="checkbox_showHtml_rollOutHandler(event)" change="checkbox_showHtml_changeHandler(event)" top="127" creationComplete="checkbox_showHtml_creationCompleteHandler(event)"
191 toolTip="HTML���������������������������������������������������������������������������������������������������������������������������������������������������������������������" fontWeight="bold"/>
192 <mx:Text id="text_info" left="100" top="2" height="55"/>
193 <mx:ViewStack id="viewstack1" left="5" right="5" top="150" bottom="27">
194 <mx:Canvas label="������������" width="100%" height="100%" id="canvas_videoInfo">
195 <mx:TabNavigator left="0" right="0" top="0" bottom="0">
196 <mx:Canvas label="������������" width="100%" height="100%" id="canvas_comment_parent">
197 <mx:TabNavigator right="0" left="0" top="0" bottom="48" id="tabNavigator_comment" change="tabNavigator_comment_changeHandler(event)">
198 <mx:Canvas label="���������������������" width="100%" height="100%" id="canvas_comment" toolTip="������������������������������������������">
199 <mx:DataGrid left="0" right="0" top="0" bottom="0" dataProvider="{commentListProvider}" resizableColumns="true"
200 id="dataGrid_comment" headerRelease="headerReleaseHandler(event)" doubleClickEnabled="true"
201 itemDoubleClick="commentListDoubleClicked(event)" editable="false" rowHeight="22"
202 horizontalScrollPolicy="on">
203 <mx:columns>
204 <mx:DataGridColumn headerText="������" dataField="vpos_column" width="50"/>
205 <mx:DataGridColumn headerText="������������" dataField="comment_column" width="300"/>
206 <mx:DataGridColumn headerText="������������ID" dataField="user_id_column" width="150"/>
207 </mx:columns>
208 </mx:DataGrid>
209 </mx:Canvas>
210 <mx:Canvas label="������������������" width="100%" height="100%" toolTip="���������������������������������������������������������������������������������������������������������������������������������������������">
211 <mx:DateField left="5" top="5" id="dateField_oldComment"/>
212 <mx:NumericStepper left="103" top="5" minimum="0" maximum="23" id="numericStepper_hour_oldComment"/>
213 <mx:Label text="���" left="169" top="7"/>
214 <mx:NumericStepper left="196" top="5" minimum="0" maximum="59" id="numericStepper_min_oldComment"/>
215 <mx:Label text="���" left="262" top="7"/>
216 <mx:Button label="������������" right="5" top="5" click="oldCommentTimeResetButton_clickHandler(event)" toolTip="������������������������������������������"/>
217 <mx:Button label="������(������������������)" right="109" top="30" id="button_oldComment_reloadFromNico" click="button_oldComment_reloadFromNico_clickHandler(event)" toolTip="���������������������������������������������������������������������������������������(���������������������������������������������������������������������������)"/>
218 <mx:Button label="������(������������)" top="30" right="5" id="button_oldComment_reload" click="button_oldComment_reload_clickHandler(event)" toolTip="������������������������������������������������������������������������������������������������"/>
219 <mx:DataGrid left="0" right="0" top="55" bottom="0" dataProvider="{commentListProvider}" resizableColumns="true"
220 id="dataGrid_oldComment" editable="false" rowHeight="22" horizontalScrollPolicy="on" headerRelease="headerReleaseHandler(event)"
221 creationComplete="dataGrid_oldComment_creationCompleteHandler(event)" doubleClickEnabled="true"
222 itemDoubleClick="commentListDoubleClicked(event)">
223 <mx:columns>
224 <mx:DataGridColumn headerText="������" dataField="vpos_column" width="50"/>
225 <mx:DataGridColumn headerText="������������" dataField="comment_column" width="300"/>
226 <mx:DataGridColumn headerText="������������ID" dataField="user_id_column" width="150"/>
227 </mx:columns>
228 </mx:DataGrid>
229 </mx:Canvas>
230 <mx:Canvas label="NG������" width="100%" height="100%" toolTip="������������������������NG���������������������������">
231 <mx:ComboBox id="combobox_ngKind" left="5" top="5" width="85" height="22"
232 dataProvider="{Comments.NG_KIND_ARRAY}" selectedIndex="0"></mx:ComboBox>
233 <mx:TextInput left="97" enabled="true" id="textInput_ng" enter="ngTextInputEnter(event)" right="97" top="5"/>
234
235 <mx:Button right="50" top="5" width="40" label="+"
236 click="addItemToNgList()" enabled="true"
237 toolTip="NG������������������������������������"/>
238 <mx:Button id="button_removeNgList" right="5" top="5" width="40"
239 label="-" click="removeItemFromNgList()"
240 toolTip="NG���������������������������������������"/>
241 <mx:DataGrid id="dataGrid_NG" dataProvider="{ngListProvider}" itemClick="ngListItemClicked(event)" left="0" bottom="0" right="0" top="35">
242 <mx:columns>
243 <mx:DataGridColumn headerText="������" dataField="ng_kind_column" width="80"/>
244 <mx:DataGridColumn headerText="������" dataField="ng_word_column"/>
245 </mx:columns>
246 </mx:DataGrid>
247
248 </mx:Canvas>
249 </mx:TabNavigator>
250 <mx:Button label="ID���NG" bottom="23" left="5" enabled="true" id="button_addNgList_ID" click="addNGListIdButtonClicked()" toolTip="���������������������������ID���NG������������������"/>
251 <mx:Button label="���������������NG" left="80" bottom="23" id="button_addNgList_Word" click="addNGListWordButtonClicked()" toolTip="������������������������(������)���NG������������������"/>
252 <mx:Button label="ID���������" left="180" bottom="23" click="addPermissionIdButtonClicked()" toolTip="���������������������������ID���������ID������������������"/>
253 <mx:CheckBox label="������������������������������" left="5" bottom="2" id="checkbox_SyncComment" click="checkboxSyncCommentChanged()" toolTip="������������������������������������������������������������������������������������������������������������������������������������������������������������"/>
254 <mx:CheckBox label="������ID������������" id="checkBox_isShowOnlyPermissionComment" click="checkBoxIsSOPCChanged(event)" left="160" bottom="2" toolTip="������ID������������������������ID���������������������������������������"/>
255 </mx:Canvas>
256 <mx:Canvas label="������������������" width="100%" height="100%" id="canvas_playList" creationComplete="checkBox_repeatAllCompleteHandler(event)" verticalScrollPolicy="off" horizontalScrollPolicy="off">
257 <mx:DataGrid left="0" right="0" top="20" bottom="53" dataProvider="{playListProvider}" doubleClickEnabled="true"
258 dragEnabled="true" dropEnabled="true" dragMoveEnabled="true" dragDrop="playListDragDropHandler(event)" id="dataGrid_playList"
259 itemDoubleClick="playListDoubleClicked()" showHeaders="false">
260 <mx:columns>
261 <mx:DataGridColumn>
262 </mx:DataGridColumn>
263 </mx:columns>
264 </mx:DataGrid>
265 <mx:CheckBox id="checkBox_repeatAll" right="5" bottom="5" label="���������������������"
266 change="checkboxRepeatAllChanged()"
267 toolTip="���������������������������������������������������������������������������������������������"/>
268 <mx:Button left="10" bottom="28" width="50" label="-"
269 click="playListItemDeleteButtonClicked(event)"
270 toolTip="������������������������������������������������������������"/>
271 <mx:Button id="button_reverse" left="68" bottom="28" width="50" label="������"
272 click="playListReverseButtonClicked(event)"
273 toolTip="������������������������������������������������������"/>
274 <mx:Button left="10" bottom="3" label="������"
275 click="playListSaveButtonClicked(event)" toolTip="���������������������������������������������������"/>
276 <mx:Button left="89" bottom="3" label="���������"
277 click="playListClearButtonClicked(event)" toolTip="������������������������������������������"/>
278 <mx:Button id="button_shuffle" left="126" bottom="28" width="80" label="���������������"
279 click="playListShuffleButtonClicked(event)"
280 toolTip="���������������������������������������������������"/>
281 <mx:Label left="0" top="0" right="0" id="label_playListTitle" text="{label_playListTitle_dataProvider}"/>
282 </mx:Canvas>
283 <mx:Canvas label="������" width="100%" height="100%" id="canvas_Tag">
284 <mx:TabNavigator left="0" top="0" bottom="0" right="0">
285 <mx:Canvas label="������������" width="100%" height="100%">
286 <mx:List id="list_nicoTag" dataProvider="{nicoTagProvider}" doubleClickEnabled="true" itemDoubleClick="tagListDoubleClickEventHandler(event)" left="0" top="0" bottom="0" right="0"></mx:List>
287 </mx:Canvas>
288 <mx:Canvas label="������������" width="100%" height="100%">
289 <mx:List id="list_localTag" dataProvider="{localTagProvider}" doubleClickEnabled="true" itemDoubleClick="tagListDoubleClickEventHandler(event)" left="0" top="0" bottom="0" right="0"></mx:List>
290 </mx:Canvas>
291 </mx:TabNavigator>
292 </mx:Canvas>
293 <mx:Canvas label="������" width="100%" height="100%" horizontalScrollPolicy="off" verticalScrollPolicy="off" id="canvas_ichiba">
294 <mx:TabNavigator left="0" top="0" bottom="0" right="0" id="tab_inner_ichiba">
295 <mx:Canvas label="������������" width="100%" height="100%">
296 <mx:DataGrid showHeaders="false" left="0" top="0" bottom="0" right="0" rowHeight="80" dataProvider="{ichibaNicoProvider}" id="dataGrid_ichiba_nico" doubleClickEnabled="true" itemDoubleClick="ichibaDataGridDoubleClicked(event)">
297 <mx:columns>
298 <mx:DataGridColumn dataField="col_image" width="80">
299 <mx:itemRenderer>
300 <mx:Component><mx:Image width="80" height="80" /></mx:Component>
301 </mx:itemRenderer>
302 </mx:DataGridColumn>
303 <mx:DataGridColumn dataField="col_info"/>
304 </mx:columns>
305 </mx:DataGrid>
306 </mx:Canvas>
307 <mx:Canvas label="������������" width="100%" height="100%">
308 <mx:DataGrid showHeaders="false" left="0" top="0" bottom="0" right="0" rowHeight="80" dataProvider="{ichibaLocalProvider}" id="dataGrid_ichiba_local" doubleClickEnabled="true" itemDoubleClick="ichibaDataGridDoubleClicked(event)">
309 <mx:columns>
310 <mx:DataGridColumn dataField="col_image" width="80">
311 <mx:itemRenderer>
312 <mx:Component><mx:Image width="80" height="80" /></mx:Component>
313 </mx:itemRenderer>
314 </mx:DataGridColumn>
315 <mx:DataGridColumn dataField="col_info"/>
316 </mx:columns>
317 </mx:DataGrid>
318 </mx:Canvas>
319 </mx:TabNavigator>
320 </mx:Canvas>
321 <mx:Canvas label="���������" width="100%" height="100%" id="canvas_owner">
322 <mx:VDividedBox left="0" top="0" bottom="0" right="0">
323 <mx:TabNavigator width="100%" height="200">
324 <mx:Canvas id="canvas_owner_onNico" label="������������" width="100%" height="100%">
325 <mx:TextArea id="textArea_owner_onNico" editable="false" wordWrap="true" left="0" top="0" bottom="0" right="0" htmlText="{owner_text_nico}" link="ownerTextLinkClicked(event)"/>
326 </mx:Canvas>
327 <mx:Canvas id="canvas_owner_local" label="������������" width="100%" height="100%">
328 <mx:TextArea id="textArea_owner" editable="false" wordWrap="true" left="0" top="0" bottom="0" right="0" htmlText="{owner_text_local}" link="ownerTextLinkClicked(event)"/>
329 </mx:Canvas>
330 </mx:TabNavigator>
331 <mx:DataGrid width="100%" height="50%" id="dataGrid_ownerComment" dataProvider="{ownerCommentProvider}" doubleClickEnabled="true" itemDoubleClick="commentListDoubleClicked(event)" rowHeight="22">
332 <mx:columns>
333 <mx:DataGridColumn headerText="������" dataField="vpos_column" width="50"/>
334 <mx:DataGridColumn headerText="������������" dataField="command_column" width="100"/>
335 <mx:DataGridColumn headerText="������������" dataField="comment_column"/>
336 </mx:columns>
337 </mx:DataGrid>
338 </mx:VDividedBox>
339 </mx:Canvas>
340 <mx:Canvas label="������������" width="100%" height="100%" creationComplete="relationCanvasCreationCompleteHandler(event)">
341 <mx:ComboBox left="0" top="0" width="120" dataProvider="{relationSortComboboxDataProvider}" id="combobox_relationSort" change="relationSortComboboxChange(event)"></mx:ComboBox>
342 <mx:ComboBox left="128" top="0" width="120" dataProvider="{relationOrderComboboxDataProvider}" id="combobox_relationOrder" change="relationOrderComboboxChange(event)"></mx:ComboBox>
343 <mx:DataGrid left="0" top="30" bottom="0" right="0" dataProvider="{relationDataProvider}" doubleClickEnabled="true"
344 id="datagrid_relation" showHeaders="false" itemDoubleClick="relationItemDoubleClickHandler(event)" rowHeight="70">
345 <mx:columns>
346 <mx:DataGridColumn dataField="col_image" width="80">
347 <mx:itemRenderer>
348 <mx:Component><mx:Image width="80" height="70" /></mx:Component>
349 </mx:itemRenderer>
350 </mx:DataGridColumn>
351 <mx:DataGridColumn dataField="col_info"/>
352 </mx:columns>
353 </mx:DataGrid>
354 </mx:Canvas>
355 </mx:TabNavigator>
356 </mx:Canvas>
357 <mx:Canvas width="100%" height="100%" label="������������" creationComplete="canvas1_creationCompleteHandler(event)">
358 <mx:Label left="10" top="10" text="���������������"/>
359 <mx:Text y="10" left="83" right="5" text="{videoType}" id="videoTypeText"/>
360
361 <mx:Label left="10" top="30" text="���������������"/>
362 <mx:Text y="30" left="83" right="5" text="{connectionType}" id="connectionTypeText"/>
363
364 <mx:Label left="10" top="50" text="���������������������"/>
365 <mx:Text y="50" left="107" right="5" text="{videoServerUrl}" id="videoServerUrlText"/>
366 </mx:Canvas>
367 <mx:Canvas label="������" width="100%" height="100%">
368 <mx:Canvas label="������" id="canvas_config" verticalScrollPolicy="on" left="0" top="0" bottom="0" right="0" creationComplete="configCanvasCreationCompleteHandler(event)"
369 backgroundColor="#ffffff">
370 <mx:CheckBox label="Player���������������������������������" id="checkbox_PlayerAlwaysFront" change="checkBoxPlayerAlwaysFrontChanged(event)" minHeight="20" left="10" top="10"/>
371 <mx:CheckBox label="InfoView���������������������������������" id="checkbox_InfoViewAlwaysFront" change="checkBoxInfoViewAlwaysFrontChanged(event)" minHeight="20" left="10" top="40"/>
372 <mx:CheckBox label="InfoView���Player������������������" id="checkbox_playerFollow" change="checkboxPlayerFollowChanged(event)" left="10" top="70"/>
373 <mx:CheckBox label="Player������������������������������������������" id="checkbox_resizePlayerEachPlay" change="checkboxResizePlayerEachPlay(event)" left="10" top="100"/>
374 <mx:RadioButton label="������������������������������������" id="radioButton_resizeNicoDou" groupName="radioGroup_resizeType" value="1" left="35" top="118" change="radioButtonResizeTypeChanged(event)" toolTip="������������������������������������������������������������������������������������������������������������"/>
375 <mx:RadioButton label="���������������������������������" id="radioButton_resizeVideo" groupName="radioGroup_resizeType" value="2" left="35" top="160" change="radioButtonResizeTypeChanged(event)" toolTip="���������������������������������������������������������������������������������������"/>
376 <mx:RadioButtonGroup id="radioGroup_resizeType" selectedValue="1" />
377 <mx:CheckBox label="16:9���������������������������" id="checkbox_enableWideMode" selected="true" left="68" top="135" change="checkboxEnableWideModeChanged(event)" toolTip="���������������������16:9���������������������������������������������Player���������������16:9���������������������"/>
378 <mx:CheckBox label="Player���������������������������������" left="10" top="190" id="checkBox_showAlwaysNicowariArea" change="checkBoxShowAlwaysNicowariAreaChanged(event)" toolTip="Player���������������������������������������������������������������������������������������������������������������������������������������"/>
379 <mx:CheckBox label="Player���������������������������������" left="10" top="220" id="checkbox_hideTagArea" change="checkboxHideTagAreaChanged(event)" toolTip="Player���������������������������������������������������"/>
380 <mx:CheckBox id="checkbox_hideUnderController" left="10" top="250" height="22"
381 label="Player������������������������������������������"
382 change="checkboxHideUnderControllerChanged(event)" fontWeight="normal"
383 rollOut="videoPlayer.videoController.rollOut(event)"
384 rollOver="videoPlayer.videoController.rollOver(event)"
385 toolTip="Player���������������������������������������������������������������������������������������������������������������������"/>
386 <mx:CheckBox label="���������������������������������������������" left="10" top="280" id="checkBox_renewComment" click="checkBoxRenewCommentChanged()" toolTip="������������������������������������������������������������������������������������������������"/>
387 <mx:CheckBox label="������������������������������������" left="35" top="301" id="checkBox_renewTagAndNicowari" click="checkBoxRenewTagNicowariChanged()" toolTip="������������������������������������������������������������������������������"/>
388 <mx:CheckBox label="���������������������������������������������������������������������������������" left="35" top="321" id="checkBox_isAppendComment" change="checkBoxAppendCommentChanged(event)" toolTip="���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������NNDD������������������������������������������������������������������������������������������������������"/>
389 <mx:CheckBox label="������������������������������������" left="10" top="381" id="checkBox_enableJump" click="checkBoxIsEnableJump(event)" toolTip="������������������������������������������������������������������������������"/>
390 <mx:CheckBox label="���������������������������������������������������������" left="35" top="402" id="checkBox_askToUserOnJump" click="checkBoxIsAskToUserOnJump(event)" toolTip="���������������������������������������������������������������������������������������������������������������"/>
391 <mx:CheckBox left="10" top="351" label="���������������������������������������������������" toolTip="������������������������������������������������������������������������������������������������" id="checkBox_hideSekaShinComment" click="checkBoxHideSekaShinComment(event)"/>
392 <mx:CheckBox label="������������������������������" top="432" left="10" id="checkBox_commentBold" change="checkBoxCommentBoldChanged(event)"/>
393 <mx:CheckBox label="������������������������������������������������������������" id="checkBox_isAlwaysEconomyForStreaming" left="10" top="462" change="checkBoxAlwaysEconomyChanged(event)" toolTip="���������������������������������������������������������������������������������������������������������������������������������������������������"/>
394 <mx:CheckBox left="10" top="492" label="������������������������������������������" toolTip="������������������������������������������������������������������������������������������������������������������" id="checkBox_isNgUpEnable" change="checkBoxNgUpChanged(event)"/>
395 <mx:CheckBox left="10" top="522" label="���������������������������������������������" toolTip="FLV/MP4���������������������������������������������������������" id="checkBox_isSmoothing" change="checkBoxSmoothingChanged(event)" selected="true"/>
396
397 <mx:Label text="���������������������������" left="10" top="553"/>
398 <mx:HSlider minimum="0.5" maximum="1.5" snapInterval="0.1" value="1" left="143" top="553" change="commentScaleSliderChanged(event)" id="slider_commentScale" right="10"/>
399 <mx:Label text="0.5���" left="143" top="579"/>
400 <mx:Label right="10" top="579" text="1.5���"/>
401 <mx:Label text="���������������FPS���" left="10" top="605" toolTip="������������������������FPS������������������������������������������������������������"/>
402 <mx:HSlider minimum="1" maximum="5" value="2" left="143" top="605" snapInterval="1" dataTipFormatFunction="fpsDataTipFormatFunction" id="slider_fps" change="sliderFpsChanged(event)" right="10" toolTip="������������������������FPS������������������������������������������������������������"/>
403 <mx:Label text="7.5fps" left="143" top="631"/>
404 <mx:Label right="10" top="631" text="120fps"/>
405 <mx:Label x="10" y="657" text="���������������������������"/>
406 <mx:HSlider y="657" left="143" minimum="50" maximum="2500" snapInterval="50" right="10" showDataTip="true" value="250" id="slider_showCommentCount" change="sliderShowCommentCountChanged(event)" toolTip="������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������"/>
407 <mx:Label text="50" left="143" top="683"/>
408 <mx:Label right="10" top="683" text="2500"/>
409 <mx:Label x="10" y="709" text="���������������������������"/>
410 <mx:HSlider y="709" left="143" minimum="1" maximum="5" snapInterval="1" right="10" showDataTip="true" value="3" id="slider_showCommentTime" change="sliderShowCommentTimeChanged(event)"/>
411 <mx:Label text="1���" left="143" top="735"/>
412 <mx:Label text="5���" top="735" right="10"/>
413 <mx:Label x="10" y="761" text="������������������������������" toolTip="������������������������������[���������������������]���������������������������������������"/>
414 <mx:HSlider y="761" left="143" minimum="1" maximum="100" snapInterval="1" right="10" showDataTip="true" value="100" id="slider_commentAlpha" change="sliderCommentAlphaChanged(event)" toolTip="������������������������������[���������������������]���������������������������������������"/>
415 <mx:Label text="1%" left="143" top="787"/>
416 <mx:Label text="100%" top="787" right="10"/>
417
418
419 </mx:Canvas>
420 </mx:Canvas>
421 </mx:ViewStack>
422 <mx:ToggleButtonBar dataProvider="{viewstack1}" left="5" bottom="5" fontWeight="normal" height="20">
423 </mx:ToggleButtonBar>
424 <mx:Button id="button_videoOpen" right="5" bottom="5" width="87" height="20" label="���������������..."
425 click="button_videoOpen_clickHandler(event)"/>
426
427
428 </mx:Window>

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26