Develop and Download Open Source Software

Browse Subversion Repository

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 361 - (hide annotations) (download)
Wed Oct 27 10:36:16 2010 UTC (13 years, 5 months ago) by mineap
File size: 27418 byte(s)
v1をv2にマージ
1 mineap 361 <?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.nnddv2.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     </mx:Script>
160    
161     <mx:Script source="org/mineap/nnddv2/view/VideoInfoView.as" />
162    
163     <mx:Image id="image_thumbImg" left="5" top="2" scaleContent="true" height="70" click="button_goToWebClicked(event)"
164     toolTip="������������������������������������������������������������" enabled="true" width="92" creationComplete="image_thumbImg_creationCompleteHandler(event)"/>
165    
166     <mx:ComboBox left="100" top="53" right="128" id="comboBox_mylist" dataProvider="{myListDataProvider}" close="comboBox_mylist_closeHandler(event)" height="20"></mx:ComboBox>
167     <mx:Button id="button_mylist" right="74" top="53" width="50" height="20" label="������"
168     click="myListAddButtonClicked(event)" toolTip="���������������������������������������������������������������"/>
169     <mx:VRule width="12" height="20" top="53" right="58"/>
170    
171     <mx:Button id="button_download" right="5" top="53" width="50" height="20" label="DL"
172     click="button_addDownloadList(event)" toolTip="������������������������������������������������������"/>
173    
174     <mx:TextArea left="5" top="75" right="5" height="73" htmlText="{owner_text_nico}" id="textArea_upperOwnerText" link="ownerTextLinkClicked(event)"/>
175     <mx:CheckBox label="HTML" right="20" id="checkbox_showHtml" alpha="0.3" enabled="true" selected="true" rollOver="checkbox_showHtml_rollOverHandler(event)"
176     rollOut="checkbox_showHtml_rollOutHandler(event)" change="checkbox_showHtml_changeHandler(event)" top="127" creationComplete="checkbox_showHtml_creationCompleteHandler(event)"
177     toolTip="HTML���������������������������������������������������������������������������������������������������������������������������������������������������������������������" fontWeight="bold"/>
178     <mx:Text id="text_info" left="100" top="2" height="55"/>
179     <mx:ViewStack id="viewstack1" left="5" right="5" top="150" bottom="27">
180     <mx:Canvas label="������������" width="100%" height="100%" id="canvas_videoInfo">
181     <mx:TabNavigator left="0" right="0" top="0" bottom="0">
182     <mx:Canvas label="������������" width="100%" height="100%" id="canvas_comment_parent">
183     <mx:TabNavigator right="0" left="0" top="0" bottom="48" id="tabNavigator_comment" change="tabNavigator_comment_changeHandler(event)">
184     <mx:Canvas label="���������������������" width="100%" height="100%" id="canvas_comment" toolTip="������������������������������������������">
185     <mx:DataGrid left="0" right="0" top="0" bottom="0" dataProvider="{commentListProvider}" resizableColumns="true"
186     id="dataGrid_comment" headerRelease="headerReleaseHandler(event)" doubleClickEnabled="true"
187     itemDoubleClick="commentListDoubleClicked(event)" editable="false" rowHeight="22"
188     horizontalScrollPolicy="on">
189     <mx:columns>
190     <mx:DataGridColumn headerText="������" dataField="vpos_column" width="50"/>
191     <mx:DataGridColumn headerText="������������" dataField="comment_column" width="300"/>
192     <mx:DataGridColumn headerText="������������ID" dataField="user_id_column" width="150"/>
193     </mx:columns>
194     </mx:DataGrid>
195     </mx:Canvas>
196     <mx:Canvas label="������������������" width="100%" height="100%" toolTip="���������������������������������������������������������������������������������������������������������������������������������������������">
197     <mx:DateField left="5" top="5" id="dateField_oldComment"/>
198     <mx:NumericStepper left="103" top="5" minimum="0" maximum="23" id="numericStepper_hour_oldComment"/>
199     <mx:Label text="���" left="169" top="7"/>
200     <mx:NumericStepper left="196" top="5" minimum="0" maximum="59" id="numericStepper_min_oldComment"/>
201     <mx:Label text="���" left="262" top="7"/>
202     <mx:Button label="������������" right="5" top="5" click="oldCommentTimeResetButton_clickHandler(event)" toolTip="������������������������������������������"/>
203     <mx:Button label="������(������������������)" right="109" top="30" id="button_oldComment_reloadFromNico" click="button_oldComment_reloadFromNico_clickHandler(event)" toolTip="���������������������������������������������������������������������������������������(���������������������������������������������������������������������������)"/>
204     <mx:Button label="������(������������)" top="30" right="5" id="button_oldComment_reload" click="button_oldComment_reload_clickHandler(event)" toolTip="������������������������������������������������������������������������������������������������"/>
205     <mx:DataGrid left="0" right="0" top="55" bottom="0" dataProvider="{commentListProvider}" resizableColumns="true"
206     id="dataGrid_oldComment" editable="false" rowHeight="22" horizontalScrollPolicy="on" headerRelease="headerReleaseHandler(event)"
207     creationComplete="dataGrid_oldComment_creationCompleteHandler(event)" doubleClickEnabled="true"
208     itemDoubleClick="commentListDoubleClicked(event)">
209     <mx:columns>
210     <mx:DataGridColumn headerText="������" dataField="vpos_column" width="50"/>
211     <mx:DataGridColumn headerText="������������" dataField="comment_column" width="300"/>
212     <mx:DataGridColumn headerText="������������ID" dataField="user_id_column" width="150"/>
213     </mx:columns>
214     </mx:DataGrid>
215     </mx:Canvas>
216     <mx:Canvas label="NG������" width="100%" height="100%" toolTip="������������������������NG���������������������������">
217     <mx:ComboBox id="combobox_ngKind" selectedIndex="0" dataProvider="{Comments.NG_KIND_ARRAY}" left="5" top="5" width="85"></mx:ComboBox>
218     <mx:TextInput left="97" enabled="true" id="textInput_ng" enter="ngTextInputEnter(event)" right="97" top="5"/>
219    
220     <mx:Button right="50" top="5" width="40" label="+"
221     click="addItemToNgList()" enabled="true"
222     toolTip="NG������������������������������������"/>
223     <mx:Button id="button_removeNgList" right="5" top="5" width="40"
224     label="-" click="removeItemFromNgList()"
225     toolTip="NG���������������������������������������"/>
226     <mx:DataGrid id="dataGrid_NG" dataProvider="{ngListProvider}" itemClick="ngListItemClicked(event)" left="0" bottom="0" right="0" top="35">
227     <mx:columns>
228     <mx:DataGridColumn headerText="������" dataField="ng_kind_column" width="80"/>
229     <mx:DataGridColumn headerText="������" dataField="ng_word_column"/>
230     </mx:columns>
231     </mx:DataGrid>
232    
233     </mx:Canvas>
234     </mx:TabNavigator>
235     <mx:Button label="ID���NG" bottom="23" left="5" enabled="true" id="button_addNgList_ID" click="addNGListIdButtonClicked()" toolTip="���������������������������ID���NG������������������"/>
236     <mx:Button label="���������������NG" left="80" bottom="23" id="button_addNgList_Word" click="addNGListWordButtonClicked()" toolTip="������������������������(������)���NG������������������"/>
237     <mx:Button label="ID���������" left="180" bottom="23" click="addPermissionIdButtonClicked()" toolTip="���������������������������ID���������ID������������������"/>
238     <mx:CheckBox label="������������������������������" left="5" bottom="2" id="checkbox_SyncComment" click="checkboxSyncCommentChanged()" toolTip="������������������������������������������������������������������������������������������������������������������������������������������������������������"/>
239     <mx:CheckBox label="������ID������������" id="checkBox_isShowOnlyPermissionComment" click="checkBoxIsSOPCChanged(event)" left="160" bottom="2" toolTip="������ID������������������������ID���������������������������������������"/>
240     </mx:Canvas>
241     <mx:Canvas label="������������������" width="100%" height="100%" id="canvas_playList" creationComplete="checkBox_repeatAllCompleteHandler(event)" verticalScrollPolicy="off" horizontalScrollPolicy="off">
242     <mx:DataGrid left="0" right="0" top="20" bottom="30" dataProvider="{playListProvider}" doubleClickEnabled="true"
243     dragEnabled="true" dropEnabled="true" dragMoveEnabled="true" dragDrop="playListDragDropHandler(event)" id="dataGrid_playList"
244     itemDoubleClick="playListDoubleClicked()" showHeaders="false">
245     <mx:columns>
246     <mx:DataGridColumn>
247     </mx:DataGridColumn>
248     </mx:columns>
249     </mx:DataGrid>
250     <mx:CheckBox id="checkBox_repeatAll" right="5" bottom="5" label="���������������������"
251     change="checkboxRepeatAllChanged()"
252     toolTip="���������������������������������������������������������������������������������������������"/>
253     <mx:Button left="5" bottom="5" width="40" label="-"
254     click="playListItemDeleteButtonClicked(event)"
255     toolTip="������������������������������������������������������������"/>
256     <mx:Button id="button_reverse" left="53" bottom="5" width="40" label="������"
257     click="playListReverseButtonClicked(event)"
258     toolTip="������������������������������������������������������"/>
259     <mx:Button left="101" bottom="5" width="50" label="������"
260     click="playListSaveButtonClicked(event)" toolTip="���������������������������������������������������"/>
261     <mx:Button left="155" bottom="5" width="60" label="���������"
262     click="playListClearButtonClicked(event)" toolTip="������������������������������������������"/>
263     <mx:Label left="0" top="0" right="0" id="label_playListTitle" text="{label_playListTitle_dataProvider}"/>
264     </mx:Canvas>
265     <mx:Canvas label="������" width="100%" height="100%" id="canvas_Tag">
266     <mx:TabNavigator left="0" top="0" bottom="0" right="0">
267     <mx:Canvas label="������������" width="100%" height="100%">
268     <mx:List id="list_nicoTag" dataProvider="{nicoTagProvider}" doubleClickEnabled="true" itemDoubleClick="tagListDoubleClickEventHandler(event)" left="0" top="0" bottom="0" right="0"></mx:List>
269     </mx:Canvas>
270     <mx:Canvas label="������������" width="100%" height="100%">
271     <mx:List id="list_localTag" dataProvider="{localTagProvider}" doubleClickEnabled="true" itemDoubleClick="tagListDoubleClickEventHandler(event)" left="0" top="0" bottom="0" right="0"></mx:List>
272     </mx:Canvas>
273     </mx:TabNavigator>
274     </mx:Canvas>
275     <mx:Canvas label="������" width="100%" height="100%" horizontalScrollPolicy="off" verticalScrollPolicy="off" id="canvas_ichiba">
276     <mx:TabNavigator left="0" top="0" bottom="0" right="0" id="tab_inner_ichiba">
277     <mx:Canvas label="������������" width="100%" height="100%">
278     <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)">
279     <mx:columns>
280     <mx:DataGridColumn dataField="col_image" width="80">
281     <mx:itemRenderer>
282     <mx:Component><mx:Image width="80" height="80" /></mx:Component>
283     </mx:itemRenderer>
284     </mx:DataGridColumn>
285     <mx:DataGridColumn dataField="col_info"/>
286     </mx:columns>
287     </mx:DataGrid>
288     </mx:Canvas>
289     <mx:Canvas label="������������" width="100%" height="100%">
290     <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)">
291     <mx:columns>
292     <mx:DataGridColumn dataField="col_image" width="80">
293     <mx:itemRenderer>
294     <mx:Component><mx:Image width="80" height="80" /></mx:Component>
295     </mx:itemRenderer>
296     </mx:DataGridColumn>
297     <mx:DataGridColumn dataField="col_info"/>
298     </mx:columns>
299     </mx:DataGrid>
300     </mx:Canvas>
301     </mx:TabNavigator>
302     </mx:Canvas>
303     <mx:Canvas label="���������" width="100%" height="100%" id="canvas_owner">
304     <mx:VDividedBox left="0" top="0" bottom="0" right="0">
305     <mx:TabNavigator width="100%" height="200">
306     <mx:Canvas id="canvas_owner_onNico" label="������������" width="100%" height="100%">
307     <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)"/>
308     </mx:Canvas>
309     <mx:Canvas id="canvas_owner_local" label="������������" width="100%" height="100%">
310     <mx:TextArea id="textArea_owner" editable="false" wordWrap="true" left="0" top="0" bottom="0" right="0" htmlText="{owner_text_local}" link="ownerTextLinkClicked(event)"/>
311     </mx:Canvas>
312     </mx:TabNavigator>
313     <mx:DataGrid width="100%" height="50%" id="dataGrid_ownerComment" dataProvider="{ownerCommentProvider}" doubleClickEnabled="true" itemDoubleClick="commentListDoubleClicked(event)" rowHeight="22">
314     <mx:columns>
315     <mx:DataGridColumn headerText="������" dataField="vpos_column" width="50"/>
316     <mx:DataGridColumn headerText="������������" dataField="command_column" width="100"/>
317     <mx:DataGridColumn headerText="������������" dataField="comment_column"/>
318     </mx:columns>
319     </mx:DataGrid>
320     </mx:VDividedBox>
321     </mx:Canvas>
322     <mx:Canvas label="������������" width="100%" height="100%" creationComplete="relationCanvasCreationCompleteHandler(event)">
323     <mx:ComboBox left="0" top="0" width="120" dataProvider="{relationSortComboboxDataProvider}" id="combobox_relationSort" change="relationSortComboboxChange(event)"></mx:ComboBox>
324     <mx:ComboBox left="128" top="0" width="120" dataProvider="{relationOrderComboboxDataProvider}" id="combobox_relationOrder" change="relationOrderComboboxChange(event)"></mx:ComboBox>
325     <mx:DataGrid left="0" top="30" bottom="0" right="0" dataProvider="{relationDataProvider}" doubleClickEnabled="true"
326     id="datagrid_relation" showHeaders="false" itemDoubleClick="relationItemDoubleClickHandler(event)" rowHeight="70">
327     <mx:columns>
328     <mx:DataGridColumn dataField="col_image" width="80">
329     <mx:itemRenderer>
330     <mx:Component><mx:Image width="80" height="70" /></mx:Component>
331     </mx:itemRenderer>
332     </mx:DataGridColumn>
333     <mx:DataGridColumn dataField="col_info"/>
334     </mx:columns>
335     </mx:DataGrid>
336     </mx:Canvas>
337     </mx:TabNavigator>
338     </mx:Canvas>
339     <mx:Canvas label="������" width="100%" height="100%">
340     <mx:Canvas label="������" id="canvas_config" verticalScrollPolicy="on" left="0" top="0" bottom="0" right="0" creationComplete="configCanvasCreationCompleteHandler(event)"
341     backgroundColor="#ffffff">
342     <mx:CheckBox label="Player���������������������������������" id="checkbox_PlayerAlwaysFront" change="checkBoxPlayerAlwaysFrontChanged(event)" minHeight="20" left="10" top="10"/>
343     <mx:CheckBox label="InfoView���������������������������������" id="checkbox_InfoViewAlwaysFront" change="checkBoxInfoViewAlwaysFrontChanged(event)" minHeight="20" left="10" top="40"/>
344     <mx:CheckBox label="InfoView���Player������������������" id="checkbox_playerFollow" change="checkboxPlayerFollowChanged(event)" left="10" top="70"/>
345     <mx:CheckBox label="Player������������������������������������������" id="checkbox_resizePlayerEachPlay" change="checkboxResizePlayerEachPlay(event)" left="10" top="100"/>
346     <mx:RadioButton label="������������������������������������" id="radioButton_resizeNicoDou" groupName="radioGroup_resizeType" value="1" left="35" top="118" change="radioButtonResizeTypeChanged(event)" toolTip="������������������������������������������������������������������������������������������������������������"/>
347     <mx:RadioButton label="���������������������������������" id="radioButton_resizeVideo" groupName="radioGroup_resizeType" value="2" left="35" top="160" change="radioButtonResizeTypeChanged(event)" toolTip="���������������������������������������������������������������������������������������"/>
348     <mx:RadioButtonGroup id="radioGroup_resizeType" selectedValue="1" />
349     <mx:CheckBox label="16:9���������������������������" id="checkbox_enableWideMode" selected="true" left="68" top="135" change="checkboxEnableWideModeChanged(event)" toolTip="���������������������16:9���������������������������������������������Player���������������16:9���������������������"/>
350     <mx:CheckBox label="Player���������������������������������" left="10" top="190" id="checkBox_showAlwaysNicowariArea" change="checkBoxShowAlwaysNicowariAreaChanged(event)" toolTip="Player���������������������������������������������������������������������������������������������������������������������������������������"/>
351     <mx:CheckBox label="Player���������������������������������" left="10" top="220" id="checkbox_hideTagArea" change="checkboxHideTagAreaChanged(event)" toolTip="Player���������������������������������������������������"/>
352     <mx:CheckBox label="Player������������������������������������������" id="checkbox_hideUnderController" rollOver="videoPlayer.videoController.rollOver(event)" rollOut="videoPlayer.videoController.rollOut(event)"
353     change="checkboxHideUnderControllerChanged(event)" fontWeight="normal" left="10" top="250" width="199" height="22" toolTip="Player���������������������������������������������������������������������������������������������������������������������"/>
354     <mx:CheckBox label="���������������������������������������������" left="10" top="280" id="checkBox_renewComment" click="checkBoxRenewCommentChanged()" toolTip="������������������������������������������������������������������������������������������������"/>
355     <mx:CheckBox label="������������������������������������" left="35" top="301" id="checkBox_renewTagAndNicowari" click="checkBoxRenewTagNicowariChanged()" toolTip="������������������������������������������������������������������������������"/>
356     <mx:CheckBox label="���������������������������������������������������������������������������������" left="35" top="321" id="checkBox_isAppendComment" change="checkBoxAppendCommentChanged(event)" toolTip="���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������NNDD������������������������������������������������������������������������������������������������������"/>
357     <mx:CheckBox label="������������������������������������" left="10" top="381" id="checkBox_enableJump" click="checkBoxIsEnableJump(event)" toolTip="������������������������������������������������������������������������������"/>
358     <mx:CheckBox label="���������������������������������������������������������" left="35" top="402" id="checkBox_askToUserOnJump" click="checkBoxIsAskToUserOnJump(event)" toolTip="���������������������������������������������������������������������������������������������������������������"/>
359     <mx:CheckBox left="10" top="351" label="���������������������������������������������������" toolTip="������������������������������������������������������������������������������������������������" id="checkBox_hideSekaShinComment" click="checkBoxHideSekaShinComment(event)"/>
360     <mx:CheckBox label="������������������������������" top="432" left="10" id="checkBox_commentBold" change="checkBoxCommentBoldChanged(event)"/>
361     <mx:CheckBox label="������������������������������������������������������������" id="checkBox_isAlwaysEconomyForStreaming" left="10" top="462" change="checkBoxAlwaysEconomyChanged(event)" toolTip="���������������������������������������������������������������������������������������������������������������������������������������������������"/>
362     <mx:CheckBox left="10" top="492" label="������������������������������������������" toolTip="������������������������������������������������������������������������������������������������������������������" id="checkBox_isNgUpEnable" change="checkBoxNgUpChanged(event)"/>
363    
364     <mx:Label text="���������������������������" left="10" top="522"/>
365     <mx:HSlider minimum="0.5" maximum="1.5" snapInterval="0.1" value="1" left="113" top="522" change="commentScaleSliderChanged(event)" id="slider_commentScale" right="10"/>
366     <mx:Label text="0.5���" left="113" top="548"/>
367     <mx:Label text="1.5���" top="548" right="10" width="33"/>
368     <mx:Label text="���������������FPS���" left="10" top="574" toolTip="������������������������FPS������������������������������������������������������������"/>
369     <mx:HSlider minimum="1" maximum="5" value="2" left="113" top="574" snapInterval="1" dataTipFormatFunction="fpsDataTipFormatFunction" id="slider_fps" change="sliderFpsChanged(event)" right="10" toolTip="������������������������FPS������������������������������������������������������������"/>
370     <mx:Label text="7.5fps" left="113" top="600"/>
371     <mx:Label text="120fps" top="600" right="10" width="43"/>
372     <mx:Label x="10" y="626" text="���������������������������"/>
373     <mx:HSlider y="626" left="113" minimum="50" maximum="2500" snapInterval="50" right="10" showDataTip="true" value="250" id="slider_showCommentCount" change="sliderShowCommentCountChanged(event)" toolTip="������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������"/>
374     <mx:Label text="50" left="113" top="652"/>
375     <mx:Label text="2500" top="652" right="10" width="33"/>
376     <mx:Label x="10" y="678" text="���������������������������"/>
377     <mx:HSlider y="678" left="113" minimum="1" maximum="5" snapInterval="1" right="10" showDataTip="true" value="3" id="slider_showCommentTime" change="sliderShowCommentTimeChanged(event)"/>
378     <mx:Label text="1���" left="113" top="704"/>
379     <mx:Label text="5���" top="704" right="10"/>
380     <mx:Label x="10" y="730" text="������������������������������" toolTip="������������������������������[���������������������]���������������������������������������"/>
381     <mx:HSlider y="730" left="113" minimum="1" maximum="100" snapInterval="1" right="10" showDataTip="true" value="100" id="slider_commentAlpha" change="sliderCommentAlphaChanged(event)" toolTip="������������������������������[���������������������]���������������������������������������"/>
382     <mx:Label text="1%" left="113" top="756"/>
383     <mx:Label text="100%" top="756" right="10"/>
384    
385    
386     </mx:Canvas>
387     </mx:Canvas>
388     </mx:ViewStack>
389     <mx:ToggleButtonBar dataProvider="{viewstack1}" left="5" bottom="5" fontWeight="normal" height="20">
390     </mx:ToggleButtonBar>
391     <mx:Button label="���������������..." left="149" bottom="5" height="20" id="button_videoOpen" click="button_videoOpen_clickHandler(event)"/>
392    
393    
394     </mx:Window>

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