| 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 |
mineap |
544 |
<s:Window xmlns:fx="http://ns.adobe.com/mxml/2009" |
| 7 |
|
|
xmlns:s="library://ns.adobe.com/flex/spark" |
| 8 |
|
|
xmlns:mx="library://ns.adobe.com/flex/mx" |
| 9 |
|
|
xmlns:ns1="*" |
| 10 |
|
|
xmlns:view="org.mineap.nndd.view.*" |
| 11 |
|
|
width="400" height="580" minWidth="300" minHeight="300" |
| 12 |
mineap |
602 |
windowActivate="window1_activateHandler(event)" |
| 13 |
mineap |
544 |
backgroundColor="#FFFFFF" |
| 14 |
|
|
closing="windowClosing(event)" |
| 15 |
|
|
title="Info" |
| 16 |
|
|
windowComplete="windowCompleteHandler()" |
| 17 |
|
|
windowMove="windowMove(event)" |
| 18 |
|
|
windowResize="windowResized(event)" |
| 19 |
|
|
showStatusBar="false"> |
| 20 |
mineap |
361 |
|
| 21 |
mineap |
544 |
<fx:Script> |
| 22 |
mineap |
361 |
<![CDATA[ |
| 23 |
mineap |
490 |
import flash.net.navigateToURL; |
| 24 |
|
|
|
| 25 |
mineap |
361 |
import mx.events.DropdownEvent; |
| 26 |
|
|
import mx.events.IndexChangedEvent; |
| 27 |
mineap |
869 |
import mx.events.ResizeEvent; |
| 28 |
mineap |
361 |
|
| 29 |
mineap |
383 |
import org.mineap.nndd.player.comment.Comments; |
| 30 |
mineap |
628 |
import org.mineap.nndd.util.DataGridColumnWidthUtil; |
| 31 |
mineap |
361 |
|
| 32 |
|
|
private var thumbImgMenu:ContextMenu; |
| 33 |
|
|
private var thumbImgMenuItem1:ContextMenuItem; |
| 34 |
|
|
private var thumbImgMenuItem2:ContextMenuItem; |
| 35 |
|
|
private var thumbImgMenuItem3:ContextMenuItem; |
| 36 |
|
|
private var thumbImgMenuItem4:ContextMenuItem; |
| 37 |
|
|
private var thumbImgMenuItem5:ContextMenuItem; |
| 38 |
mineap |
808 |
private var thumbImgMenuItem6:ContextMenuItem; |
| 39 |
mineap |
361 |
|
| 40 |
mineap |
869 |
private var ownerTextInitialized:Boolean = false; |
| 41 |
mineap |
860 |
|
| 42 |
|
|
public function changeColor(isDark:Boolean):void |
| 43 |
|
|
{ |
| 44 |
|
|
if (isDark) |
| 45 |
|
|
{ |
| 46 |
|
|
this.setStyle("backgroundColor", "#646464"); |
| 47 |
|
|
this.setStyle("contentBackgroundColor", "#969696"); |
| 48 |
|
|
} |
| 49 |
|
|
else |
| 50 |
|
|
{ |
| 51 |
|
|
this.setStyle("backgroundColor", "#FFFFFF"); |
| 52 |
|
|
this.setStyle("contentBackgroundColor", "#FFFFFF"); |
| 53 |
|
|
} |
| 54 |
|
|
|
| 55 |
|
|
videoPlayer.changeColor(isDark); |
| 56 |
|
|
|
| 57 |
|
|
} |
| 58 |
|
|
|
| 59 |
mineap |
361 |
protected function window1_activateHandler(event:Event):void |
| 60 |
|
|
{ |
| 61 |
mineap |
532 |
if (videoPlayer != null) |
| 62 |
|
|
{ |
| 63 |
|
|
videoPlayer.showVideoPlayerAndVideoInfoView(); |
| 64 |
|
|
} |
| 65 |
|
|
|
| 66 |
mineap |
361 |
Mouse.show(); |
| 67 |
|
|
} |
| 68 |
|
|
|
| 69 |
|
|
protected function image_thumbImg_creationCompleteHandler(event:FlexEvent):void |
| 70 |
|
|
{ |
| 71 |
|
|
thumbImgMenu = new ContextMenu(); |
| 72 |
|
|
|
| 73 |
|
|
thumbImgMenuItem1 = new ContextMenuItem(Message.L_OPEN_DEFAULT_WEB_BROWSER); |
| 74 |
|
|
thumbImgMenuItem1.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, button_goToWebClicked); |
| 75 |
|
|
|
| 76 |
|
|
thumbImgMenuItem2 = new ContextMenuItem(Message.L_TWEET, true); |
| 77 |
|
|
thumbImgMenuItem2.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, tweet); |
| 78 |
|
|
|
| 79 |
|
|
thumbImgMenuItem3 = new ContextMenuItem(Message.L_ADD_HATENA_BOOKMARK, true); |
| 80 |
|
|
thumbImgMenuItem3.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, addHatenaBookmark); |
| 81 |
|
|
|
| 82 |
mineap |
808 |
thumbImgMenuItem6 = new ContextMenuItem(Message.L_OPEN_NICO_SOUND, true); |
| 83 |
|
|
thumbImgMenuItem6.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, openNicoSound); |
| 84 |
mineap |
361 |
|
| 85 |
mineap |
808 |
thumbImgMenuItem4 = new ContextMenuItem(Message.L_OPEN_NICO_STAR_SOUND, true); |
| 86 |
|
|
thumbImgMenuItem4.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, openNicoStarSound); |
| 87 |
|
|
|
| 88 |
mineap |
361 |
thumbImgMenuItem5 = new ContextMenuItem(Message.L_OPEN_NICOMIMI, false) |
| 89 |
|
|
thumbImgMenuItem5.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, openNicomimi); |
| 90 |
|
|
|
| 91 |
mineap |
808 |
thumbImgMenu.customItems.push(thumbImgMenuItem1, thumbImgMenuItem2, thumbImgMenuItem3, |
| 92 |
|
|
thumbImgMenuItem6, thumbImgMenuItem4, thumbImgMenuItem5); |
| 93 |
mineap |
361 |
|
| 94 |
|
|
image_thumbImg.contextMenu = thumbImgMenu; |
| 95 |
|
|
|
| 96 |
|
|
} |
| 97 |
|
|
|
| 98 |
|
|
|
| 99 |
|
|
protected function checkbox_showHtml_rollOverHandler(event:MouseEvent):void |
| 100 |
|
|
{ |
| 101 |
|
|
checkbox_showHtml.alpha = 1.0; |
| 102 |
|
|
} |
| 103 |
|
|
|
| 104 |
|
|
|
| 105 |
|
|
protected function checkbox_showHtml_rollOutHandler(event:MouseEvent):void |
| 106 |
|
|
{ |
| 107 |
|
|
checkbox_showHtml.alpha = 0.3; |
| 108 |
|
|
} |
| 109 |
|
|
|
| 110 |
|
|
|
| 111 |
|
|
protected function checkbox_showHtml_changeHandler(event:Event):void |
| 112 |
|
|
{ |
| 113 |
|
|
|
| 114 |
|
|
isShowHTMLOwnerComment = checkbox_showHtml.selected; |
| 115 |
|
|
|
| 116 |
|
|
//��������������������������� |
| 117 |
|
|
var str:String = owner_text_temp; |
| 118 |
|
|
owner_text_temp = owner_text_nico; |
| 119 |
|
|
owner_text_nico = str; |
| 120 |
|
|
} |
| 121 |
|
|
|
| 122 |
|
|
|
| 123 |
|
|
protected function checkbox_showHtml_creationCompleteHandler(event:FlexEvent):void |
| 124 |
|
|
{ |
| 125 |
|
|
checkbox_showHtml.setConstraintValue("backgroundColor", new int("0x000000")); |
| 126 |
|
|
|
| 127 |
|
|
} |
| 128 |
|
|
|
| 129 |
|
|
|
| 130 |
|
|
protected function comboBox_mylist_closeHandler(event:DropdownEvent):void |
| 131 |
|
|
{ |
| 132 |
|
|
var index:int = comboBox_mylist.selectedIndex; |
| 133 |
|
|
if(index != -1){ |
| 134 |
|
|
ConfigManager.getInstance().setItem("infoViewSelectedMyListIndex", index); |
| 135 |
|
|
} |
| 136 |
|
|
} |
| 137 |
|
|
|
| 138 |
|
|
|
| 139 |
|
|
protected function button_videoOpen_clickHandler(event:MouseEvent):void |
| 140 |
|
|
{ |
| 141 |
|
|
if(videoPlayer != null){ |
| 142 |
mineap |
605 |
(videoPlayer as VideoPlayer).fileOpen(); |
| 143 |
mineap |
361 |
} |
| 144 |
|
|
} |
| 145 |
|
|
|
| 146 |
|
|
|
| 147 |
|
|
protected function button_oldComment_reload_clickHandler(event:MouseEvent):void |
| 148 |
|
|
{ |
| 149 |
|
|
reloadOldComment(); |
| 150 |
|
|
} |
| 151 |
|
|
|
| 152 |
|
|
public function reloadOldComment():void{ |
| 153 |
|
|
playerController.reloadLocalComment(this.oldCommentDate); |
| 154 |
|
|
} |
| 155 |
|
|
|
| 156 |
|
|
public function get oldCommentDate():Date{ |
| 157 |
|
|
var date:Date = null; |
| 158 |
|
|
if(dateField_oldComment == null){ |
| 159 |
|
|
date = null; |
| 160 |
|
|
}else{ |
| 161 |
|
|
date = dateField_oldComment.selectedDate; |
| 162 |
|
|
date.hours = numericStepper_hour_oldComment.value; |
| 163 |
|
|
date.minutes = numericStepper_min_oldComment.value; |
| 164 |
|
|
} |
| 165 |
|
|
return date; |
| 166 |
|
|
} |
| 167 |
|
|
|
| 168 |
|
|
public function resetOldCommentDate():void{ |
| 169 |
|
|
var date:Date = new Date(); |
| 170 |
|
|
if(dateField_oldComment != null){ |
| 171 |
|
|
dateField_oldComment.selectedDate = date; |
| 172 |
|
|
numericStepper_hour_oldComment.value = date.hours; |
| 173 |
|
|
numericStepper_min_oldComment.value = date.minutes; |
| 174 |
|
|
} |
| 175 |
|
|
} |
| 176 |
|
|
|
| 177 |
|
|
protected function dataGrid_oldComment_creationCompleteHandler(event:FlexEvent):void |
| 178 |
|
|
{ |
| 179 |
|
|
resetOldCommentDate(); |
| 180 |
mineap |
628 |
DataGridColumnWidthUtil.loadAndSet(dataGrid_oldComment, new Vector.<String>("mail_column")); |
| 181 |
mineap |
876 |
var fontSize:int = Number(ConfigManager.getInstance().getItem("fontSize")); |
| 182 |
|
|
this.setChangeFontSize(fontSize); |
| 183 |
mineap |
361 |
} |
| 184 |
|
|
|
| 185 |
|
|
protected function tabNavigator_comment_changeHandler(event:IndexChangedEvent):void |
| 186 |
|
|
{ |
| 187 |
|
|
// ������������������������������������������������������ |
| 188 |
|
|
if(event.oldIndex == 1){ |
| 189 |
|
|
playerController.reloadLocalComment(); |
| 190 |
|
|
} |
| 191 |
|
|
} |
| 192 |
|
|
|
| 193 |
|
|
protected function oldCommentTimeResetButton_clickHandler(event:MouseEvent):void |
| 194 |
|
|
{ |
| 195 |
|
|
resetOldCommentDate(); |
| 196 |
|
|
} |
| 197 |
|
|
|
| 198 |
|
|
|
| 199 |
|
|
protected function button_oldComment_reloadFromNico_clickHandler(event:MouseEvent):void |
| 200 |
|
|
{ |
| 201 |
|
|
playerController.getOldCommentFromNico(oldCommentDate); |
| 202 |
|
|
} |
| 203 |
|
|
|
| 204 |
mineap |
484 |
|
| 205 |
|
|
protected function canvas1_creationCompleteHandler(event:FlexEvent):void |
| 206 |
|
|
{ |
| 207 |
mineap |
838 |
// videoType = "-"; |
| 208 |
|
|
// videoServerUrl = "-"; |
| 209 |
|
|
// connectionType = "-"; |
| 210 |
|
|
// messageServerUrl = "-"; |
| 211 |
|
|
// economyMode = "-"; |
| 212 |
|
|
// nickName = "-"; |
| 213 |
|
|
// isPremium = "-"; |
| 214 |
|
|
// format = "-"; |
| 215 |
|
|
// videoSize = "-"; |
| 216 |
|
|
// currentWindowSize = "-"; |
| 217 |
mineap |
490 |
|
| 218 |
mineap |
484 |
} |
| 219 |
|
|
|
| 220 |
mineap |
490 |
|
| 221 |
|
|
protected function pubUserLinkButton_clickHandler(event:MouseEvent):void |
| 222 |
|
|
{ |
| 223 |
mineap |
505 |
var url:String = pubUserLinkButton.label; |
| 224 |
|
|
if(url != null && url.length > 1){ |
| 225 |
mineap |
490 |
navigateToURL(new URLRequest(url)); |
| 226 |
|
|
}else{ |
| 227 |
|
|
|
| 228 |
|
|
} |
| 229 |
|
|
} |
| 230 |
mineap |
498 |
|
| 231 |
|
|
protected function showQualitySliderDataTipFunction(value:Number):String |
| 232 |
|
|
{ |
| 233 |
|
|
var str:String = "���"; |
| 234 |
|
|
switch(value){ |
| 235 |
|
|
case 0: |
| 236 |
|
|
str = "���"; |
| 237 |
|
|
break; |
| 238 |
|
|
case 1: |
| 239 |
|
|
str = "���" |
| 240 |
|
|
break; |
| 241 |
|
|
case 2: |
| 242 |
|
|
str = "���" |
| 243 |
|
|
break; |
| 244 |
|
|
case 3: |
| 245 |
|
|
str = "������"; |
| 246 |
|
|
break; |
| 247 |
|
|
default: |
| 248 |
|
|
str = "���"; |
| 249 |
|
|
} |
| 250 |
|
|
return str; |
| 251 |
|
|
} |
| 252 |
mineap |
490 |
|
| 253 |
mineap |
529 |
|
| 254 |
mineap |
628 |
protected function dataGrid_comment_creationCompleteHandler(event:FlexEvent):void |
| 255 |
|
|
{ |
| 256 |
|
|
DataGridColumnWidthUtil.loadAndSet(dataGrid_comment, new Vector.<String>("mail_column")); |
| 257 |
|
|
} |
| 258 |
|
|
|
| 259 |
mineap |
711 |
protected function checkBox_openFileDialogWhenOpenPlayer_clickHandler(event:MouseEvent):void |
| 260 |
|
|
{ |
| 261 |
|
|
this.isOpenFileDialogWhenOpenPlayer = (event.currentTarget as CheckBox).selected; |
| 262 |
|
|
} |
| 263 |
|
|
|
| 264 |
|
|
protected function checkBox_openFileDialogWhenOpenPlayer_creationCompleteHandler(event:FlexEvent):void |
| 265 |
|
|
{ |
| 266 |
|
|
checkBox_openFileDialogWhenOpenPlayer.selected = isOpenFileDialogWhenOpenPlayer; |
| 267 |
|
|
} |
| 268 |
|
|
|
| 269 |
mineap |
786 |
protected function dataGrid_playList_creationCompleteHandler(event:FlexEvent):void |
| 270 |
|
|
{ |
| 271 |
mineap |
784 |
if (playerController.isPlayListPlaying) |
| 272 |
|
|
{ |
| 273 |
|
|
dataGrid_playList.selectedIndex = playerController.playingIndexOnPlaylist; |
| 274 |
|
|
} |
| 275 |
|
|
} |
| 276 |
|
|
|
| 277 |
mineap |
869 |
protected function canvas2_resizeHandler(event:ResizeEvent):void |
| 278 |
|
|
{ |
| 279 |
|
|
if (ownerTextInitialized){ |
| 280 |
|
|
ownerCommentTextSize = (event.currentTarget as Canvas).height; |
| 281 |
|
|
} |
| 282 |
|
|
} |
| 283 |
|
|
|
| 284 |
|
|
protected function canvas2_creationCompleteHandler(event:FlexEvent):void |
| 285 |
|
|
{ |
| 286 |
|
|
ownerTextInitialized = true; |
| 287 |
|
|
(event.currentTarget as Canvas).height = ownerCommentTextSize; |
| 288 |
|
|
} |
| 289 |
|
|
|
| 290 |
mineap |
876 |
protected function dataGrid_ownerComment_creationCompleteHandler(event:FlexEvent):void |
| 291 |
|
|
{ |
| 292 |
|
|
var fontSize:int = Number(ConfigManager.getInstance().getItem("fontSize")); |
| 293 |
|
|
this.setChangeFontSize(fontSize); |
| 294 |
|
|
} |
| 295 |
|
|
|
| 296 |
mineap |
361 |
]]> |
| 297 |
mineap |
544 |
</fx:Script> |
| 298 |
mineap |
361 |
|
| 299 |
mineap |
544 |
<fx:Script source="org/mineap/nndd/view/VideoInfoView.as" /> |
| 300 |
mineap |
361 |
|
| 301 |
mineap |
490 |
<mx:Canvas left="5" top="2" width="90" height="70" backgroundColor="#969696" |
| 302 |
|
|
contentBackgroundColor="#969696" dropShadowVisible="false"> |
| 303 |
mineap |
491 |
<view:SmoothImage id="image_thumbImg" width="88" height="68" click="button_goToWebClicked(event)" |
| 304 |
mineap |
490 |
creationComplete="image_thumbImg_creationCompleteHandler(event)" enabled="true" |
| 305 |
|
|
left="1" top="1" scaleContent="true" toolTip="������������������������������������������������������������"/> |
| 306 |
|
|
</mx:Canvas> |
| 307 |
mineap |
772 |
|
| 308 |
|
|
<mx:Text id="text_info" left="100" top="2" height="55"/> |
| 309 |
|
|
|
| 310 |
mineap |
361 |
<mx:ComboBox left="100" top="53" right="128" id="comboBox_mylist" dataProvider="{myListDataProvider}" close="comboBox_mylist_closeHandler(event)" height="20"></mx:ComboBox> |
| 311 |
|
|
<mx:Button id="button_mylist" right="74" top="53" width="50" height="20" label="������" |
| 312 |
|
|
click="myListAddButtonClicked(event)" toolTip="���������������������������������������������������������������"/> |
| 313 |
|
|
<mx:VRule width="12" height="20" top="53" right="58"/> |
| 314 |
|
|
|
| 315 |
|
|
<mx:Button id="button_download" right="5" top="53" width="50" height="20" label="DL" |
| 316 |
|
|
click="button_addDownloadList(event)" toolTip="������������������������������������������������������"/> |
| 317 |
|
|
|
| 318 |
mineap |
772 |
<mx:Label top="75" left="5" right="5" id="label_deletedInfo" visible="false" color="0xff0000"/> |
| 319 |
|
|
|
| 320 |
mineap |
876 |
<mx:VDividedBox left="5" top="75" right="5" bottom="32" id="ownertext_comment_dividedbox" > |
| 321 |
mineap |
871 |
<mx:Canvas width="100%" height="20%" horizontalScrollPolicy="off" verticalScrollPolicy="off" |
| 322 |
|
|
resize="canvas2_resizeHandler(event)" creationComplete="canvas2_creationCompleteHandler(event)" |
| 323 |
|
|
minHeight="50"> |
| 324 |
mineap |
772 |
|
| 325 |
mineap |
871 |
<mx:TextArea htmlText="{owner_text_nico}" id="textArea_upperOwnerText" link="ownerTextLinkClicked(event)" |
| 326 |
|
|
minHeight="45" editable="false" width="100%" height="100%" /> |
| 327 |
mineap |
869 |
<mx:CheckBox label="HTML" right="20" id="checkbox_showHtml" alpha="0.3" enabled="true" selected="true" rollOver="checkbox_showHtml_rollOverHandler(event)" |
| 328 |
|
|
rollOut="checkbox_showHtml_rollOutHandler(event)" change="checkbox_showHtml_changeHandler(event)" bottom="5" creationComplete="checkbox_showHtml_creationCompleteHandler(event)" |
| 329 |
|
|
toolTip="HTML���������������������������������������������������������������������������������������������������������������������������������������������������������������������" fontWeight="bold"/> |
| 330 |
|
|
</mx:Canvas> |
| 331 |
|
|
|
| 332 |
|
|
<mx:ViewStack id="viewstack1" width="100%" height="80%"> |
| 333 |
|
|
<mx:Canvas id="canvas_videoInfo" width="100%" height="100%" label="������������"> |
| 334 |
|
|
<mx:TabNavigator left="0" right="0" top="0" bottom="0" backgroundAlpha="0.3"> |
| 335 |
|
|
<mx:Canvas label="������������" width="100%" height="100%" id="canvas_comment_parent"> |
| 336 |
|
|
<mx:TabNavigator right="0" left="0" top="0" bottom="48" id="tabNavigator_comment" |
| 337 |
|
|
change="tabNavigator_comment_changeHandler(event)" backgroundAlpha="0.3"> |
| 338 |
|
|
<mx:Canvas label="���������������������" width="100%" height="100%" id="canvas_comment" toolTip="������������������������������������������"> |
| 339 |
|
|
<mx:DataGrid id="dataGrid_comment" left="0" right="0" top="0" bottom="0" |
| 340 |
|
|
borderVisible="true" |
| 341 |
|
|
creationComplete="dataGrid_comment_creationCompleteHandler(event)" |
| 342 |
|
|
dataProvider="{commentListProvider}" |
| 343 |
|
|
doubleClickEnabled="true" editable="false" |
| 344 |
|
|
headerRelease="headerReleaseHandler(event)" |
| 345 |
|
|
horizontalScrollPolicy="on" |
| 346 |
|
|
itemDoubleClick="commentListDoubleClicked(event)" |
| 347 |
|
|
resizableColumns="true" rowHeight="22"> |
| 348 |
|
|
<mx:columns> |
| 349 |
|
|
<mx:DataGridColumn headerText="������" dataField="vpos_column" width="50" /> |
| 350 |
|
|
<mx:DataGridColumn headerText="������������" dataField="comment_column" width="300" showDataTips="true"/> |
| 351 |
|
|
<mx:DataGridColumn headerText="������������ID" dataField="user_id_column" width="150"/> |
| 352 |
|
|
<mx:DataGridColumn headerText="������������" dataField="pubDate_column" width="150"/> |
| 353 |
|
|
<mx:DataGridColumn headerText="������" dataField="no_column" width="50"/> |
| 354 |
|
|
<mx:DataGridColumn headerText="���������������" dataField="mail_column" width="50" showDataTips="true"/> |
| 355 |
|
|
</mx:columns> |
| 356 |
|
|
</mx:DataGrid> |
| 357 |
mineap |
361 |
</mx:Canvas> |
| 358 |
mineap |
879 |
<mx:Canvas label="������������������" width="100%" height="100%" horizontalScrollPolicy="off" verticalScrollPolicy="off" |
| 359 |
|
|
toolTip="���������������������������������������������������������������������������������������������������������������������������������������������"> |
| 360 |
|
|
<s:HGroup left="5" top="5" right="5"> |
| 361 |
|
|
<mx:DateField id="dateField_oldComment"/> |
| 362 |
|
|
<mx:NumericStepper minimum="0" maximum="23" id="numericStepper_hour_oldComment"/> |
| 363 |
|
|
<mx:Label text="���" /> |
| 364 |
|
|
<mx:NumericStepper minimum="0" maximum="59" id="numericStepper_min_oldComment"/> |
| 365 |
|
|
<mx:Label text="���" /> |
| 366 |
|
|
<s:Spacer width="100%" /> |
| 367 |
|
|
<mx:Button label="������������" click="oldCommentTimeResetButton_clickHandler(event)" toolTip="������������������������������������������"/> |
| 368 |
|
|
</s:HGroup> |
| 369 |
|
|
|
| 370 |
|
|
<s:HGroup right="5" top="30"> |
| 371 |
|
|
<mx:Button label="������(������������������)" id="button_oldComment_reloadFromNico" |
| 372 |
|
|
click="button_oldComment_reloadFromNico_clickHandler(event)" |
| 373 |
|
|
toolTip="���������������������������������������������������������������������������������������(���������������������������������������������������������������������������)"/> |
| 374 |
|
|
<mx:Button label="������(������������)" id="button_oldComment_reload" |
| 375 |
|
|
click="button_oldComment_reload_clickHandler(event)" |
| 376 |
|
|
toolTip="������������������������������������������������������������������������������������������������"/> |
| 377 |
|
|
</s:HGroup> |
| 378 |
|
|
|
| 379 |
mineap |
869 |
<mx:DataGrid left="0" right="0" top="55" bottom="0" dataProvider="{commentListProvider}" resizableColumns="true" |
| 380 |
|
|
id="dataGrid_oldComment" editable="false" rowHeight="22" horizontalScrollPolicy="on" headerRelease="headerReleaseHandler(event)" |
| 381 |
|
|
creationComplete="dataGrid_oldComment_creationCompleteHandler(event)" doubleClickEnabled="true" |
| 382 |
|
|
itemDoubleClick="commentListDoubleClicked(event)" |
| 383 |
|
|
contentBackgroundAlpha="0.3"> |
| 384 |
|
|
<mx:columns> |
| 385 |
|
|
<mx:DataGridColumn headerText="������" dataField="vpos_column" width="50"/> |
| 386 |
|
|
<mx:DataGridColumn headerText="������������" dataField="comment_column" width="300" showDataTips="true"/> |
| 387 |
|
|
<mx:DataGridColumn headerText="������������ID" dataField="user_id_column" width="150"/> |
| 388 |
|
|
<mx:DataGridColumn headerText="������������" dataField="pubDate_column" width="150"/> |
| 389 |
|
|
<mx:DataGridColumn headerText="������" dataField="no_column" width="50"/> |
| 390 |
|
|
<mx:DataGridColumn headerText="���������������" dataField="mail_column" width="50" showDataTips="true"/> |
| 391 |
|
|
</mx:columns> |
| 392 |
|
|
</mx:DataGrid> |
| 393 |
mineap |
361 |
</mx:Canvas> |
| 394 |
mineap |
869 |
<mx:Canvas label="NG������" width="100%" height="100%" toolTip="������������������������NG���������������������������"> |
| 395 |
|
|
|
| 396 |
mineap |
879 |
<s:HGroup top="5" right="5" left="5"> |
| 397 |
|
|
<mx:ComboBox id="combobox_ngKind" width="85" |
| 398 |
|
|
dataProvider="{Comments.NG_KIND_ARRAY}" selectedIndex="0"></mx:ComboBox> |
| 399 |
|
|
<mx:TextInput enabled="true" id="textInput_ng" enter="ngTextInputEnter(event)" width="100%" /> |
| 400 |
|
|
<mx:Button width="40" label="+" |
| 401 |
|
|
click="addItemToNgList()" enabled="true" |
| 402 |
|
|
toolTip="NG������������������������������������"/> |
| 403 |
|
|
<mx:Button id="button_removeNgList" width="40" |
| 404 |
|
|
label="-" click="removeItemFromNgList()" |
| 405 |
|
|
toolTip="NG���������������������������������������"/> |
| 406 |
|
|
</s:HGroup> |
| 407 |
mineap |
869 |
<mx:DataGrid id="dataGrid_NG" dataProvider="{ngListProvider}" |
| 408 |
|
|
itemClick="ngListItemClicked(event)" left="0" bottom="0" right="0" top="35" |
| 409 |
|
|
contentBackgroundAlpha="0.3"> |
| 410 |
|
|
<mx:columns> |
| 411 |
|
|
<mx:DataGridColumn headerText="������" dataField="ng_kind_column" width="80"/> |
| 412 |
|
|
<mx:DataGridColumn headerText="������" dataField="ng_word_column"/> |
| 413 |
|
|
</mx:columns> |
| 414 |
|
|
</mx:DataGrid> |
| 415 |
|
|
|
| 416 |
|
|
</mx:Canvas> |
| 417 |
mineap |
361 |
</mx:TabNavigator> |
| 418 |
mineap |
876 |
<s:HGroup bottom="23" left="5"> |
| 419 |
|
|
<mx:Button label="ID���NG" enabled="true" id="button_addNgList_ID" |
| 420 |
|
|
click="addNGListIdButtonClicked()" toolTip="���������������������������ID���NG������������������"/> |
| 421 |
|
|
<mx:Button label="���������������NG" id="button_addNgList_Word" |
| 422 |
|
|
click="addNGListWordButtonClicked()" toolTip="������������������������(������)���NG������������������"/> |
| 423 |
|
|
<mx:Button label="ID���������" click="addPermissionIdButtonClicked()" |
| 424 |
|
|
toolTip="���������������������������ID���������ID������������������"/> |
| 425 |
|
|
</s:HGroup> |
| 426 |
|
|
<s:HGroup left="5" bottom="2"> |
| 427 |
|
|
<mx:CheckBox label="������������������������������" id="checkbox_SyncComment" |
| 428 |
|
|
click="checkboxSyncCommentChanged()" toolTip="������������������������������������������������������������������������������������������������������������������������������������������������������������"/> |
| 429 |
|
|
<mx:CheckBox label="������ID������������" id="checkBox_isShowOnlyPermissionComment" |
| 430 |
|
|
click="checkBoxIsSOPCChanged(event)" toolTip="������ID������������������������ID���������������������������������������"/> |
| 431 |
|
|
</s:HGroup> |
| 432 |
|
|
|
| 433 |
mineap |
869 |
</mx:Canvas> |
| 434 |
|
|
<mx:Canvas label="������������������" width="100%" height="100%" id="canvas_playList" verticalScrollPolicy="off" horizontalScrollPolicy="off"> |
| 435 |
mineap |
876 |
|
| 436 |
|
|
<mx:Label left="0" top="0" right="0" id="label_playListTitle" text="{label_playListTitle_dataProvider}"/> |
| 437 |
|
|
|
| 438 |
mineap |
879 |
<mx:DataGrid left="0" right="0" top="20" bottom="55" dataProvider="{playListProvider}" doubleClickEnabled="true" |
| 439 |
mineap |
869 |
dragEnabled="true" dropEnabled="true" dragMoveEnabled="true" dragDrop="playListDragDropHandler(event)" id="dataGrid_playList" |
| 440 |
|
|
itemDoubleClick="playListDoubleClicked()" showHeaders="false" |
| 441 |
|
|
creationComplete="dataGrid_playList_creationCompleteHandler(event)" |
| 442 |
|
|
contentBackgroundAlpha="0.3"> |
| 443 |
mineap |
361 |
<mx:columns> |
| 444 |
mineap |
869 |
<mx:DataGridColumn showDataTips="true"> |
| 445 |
|
|
</mx:DataGridColumn> |
| 446 |
mineap |
361 |
</mx:columns> |
| 447 |
|
|
</mx:DataGrid> |
| 448 |
mineap |
876 |
|
| 449 |
|
|
<s:VGroup left="2" bottom="2"> |
| 450 |
|
|
<s:HGroup> |
| 451 |
|
|
<mx:Button width="50" label="-" |
| 452 |
|
|
click="playListItemDeleteButtonClicked(event)" |
| 453 |
|
|
toolTip="������������������������������������������������������������"/> |
| 454 |
|
|
<mx:Button id="button_reverse" width="50" label="������" |
| 455 |
|
|
click="playListReverseButtonClicked(event)" |
| 456 |
|
|
toolTip="������������������������������������������������������"/> |
| 457 |
|
|
<mx:Button id="button_shuffle" label="���������������" |
| 458 |
|
|
click="playListShuffleButtonClicked(event)" |
| 459 |
|
|
toolTip="���������������������������������������������������"/> |
| 460 |
|
|
</s:HGroup> |
| 461 |
|
|
<s:HGroup> |
| 462 |
|
|
<mx:Button label="������" |
| 463 |
|
|
click="playListSaveButtonClicked(event)" |
| 464 |
|
|
toolTip="���������������������������������������������������"/> |
| 465 |
|
|
<mx:Button label="���������" |
| 466 |
|
|
click="playListClearButtonClicked(event)" |
| 467 |
|
|
toolTip="������������������������������������������"/> |
| 468 |
|
|
</s:HGroup> |
| 469 |
|
|
</s:VGroup> |
| 470 |
|
|
|
| 471 |
mineap |
869 |
<mx:CheckBox id="checkBox_repeatAll" right="5" bottom="5" label="���������������������" |
| 472 |
|
|
change="checkboxRepeatAllChanged()" creationComplete="checkBox_repeatAllCompleteHandler(event)" |
| 473 |
|
|
toolTip="���������������������������������������������������������������������������������������������"/> |
| 474 |
mineap |
498 |
|
| 475 |
|
|
</mx:Canvas> |
| 476 |
mineap |
869 |
<mx:Canvas label="������" width="100%" height="100%" id="canvas_Tag"> |
| 477 |
|
|
<mx:TabNavigator left="0" top="0" bottom="0" right="0" |
| 478 |
|
|
backgroundAlpha="0.3"> |
| 479 |
|
|
<mx:Canvas label="������������" width="100%" height="100%"> |
| 480 |
|
|
<mx:List id="list_nicoTag" dataProvider="{nicoTagProvider}" doubleClickEnabled="true" itemDoubleClick="tagListDoubleClickEventHandler(event)" left="0" top="0" bottom="0" right="0"></mx:List> |
| 481 |
|
|
</mx:Canvas> |
| 482 |
|
|
<mx:Canvas label="������������" width="100%" height="100%"> |
| 483 |
|
|
<mx:List id="list_localTag" dataProvider="{localTagProvider}" doubleClickEnabled="true" itemDoubleClick="tagListDoubleClickEventHandler(event)" left="0" top="0" bottom="0" right="0"></mx:List> |
| 484 |
|
|
</mx:Canvas> |
| 485 |
|
|
</mx:TabNavigator> |
| 486 |
mineap |
498 |
</mx:Canvas> |
| 487 |
mineap |
869 |
<mx:Canvas label="������" width="100%" height="100%" horizontalScrollPolicy="off" verticalScrollPolicy="off" id="canvas_ichiba"> |
| 488 |
|
|
<mx:TabNavigator left="0" top="0" bottom="0" right="0" id="tab_inner_ichiba" |
| 489 |
|
|
backgroundAlpha="0.3"> |
| 490 |
|
|
<mx:Canvas label="������������" width="100%" height="100%"> |
| 491 |
|
|
<mx:DataGrid showHeaders="false" left="0" top="0" bottom="0" right="0" |
| 492 |
|
|
rowHeight="80" dataProvider="{ichibaNicoProvider}" |
| 493 |
|
|
id="dataGrid_ichiba_nico" doubleClickEnabled="true" |
| 494 |
|
|
itemDoubleClick="ichibaDataGridDoubleClicked(event)" |
| 495 |
|
|
contentBackgroundAlpha="0.3"> |
| 496 |
|
|
<mx:columns> |
| 497 |
|
|
<mx:DataGridColumn dataField="col_image" width="80"> |
| 498 |
|
|
<mx:itemRenderer> |
| 499 |
|
|
<fx:Component><mx:Image width="80" height="80" /></fx:Component> |
| 500 |
|
|
</mx:itemRenderer> |
| 501 |
|
|
</mx:DataGridColumn> |
| 502 |
|
|
<mx:DataGridColumn dataField="col_info"/> |
| 503 |
|
|
</mx:columns> |
| 504 |
|
|
</mx:DataGrid> |
| 505 |
|
|
</mx:Canvas> |
| 506 |
|
|
<mx:Canvas label="������������" width="100%" height="100%"> |
| 507 |
|
|
<mx:DataGrid showHeaders="false" left="0" top="0" bottom="0" |
| 508 |
|
|
right="0" rowHeight="80" dataProvider="{ichibaLocalProvider}" |
| 509 |
|
|
id="dataGrid_ichiba_local" doubleClickEnabled="true" |
| 510 |
|
|
itemDoubleClick="ichibaDataGridDoubleClicked(event)" |
| 511 |
|
|
contentBackgroundAlpha="0.3"> |
| 512 |
|
|
<mx:columns> |
| 513 |
|
|
<mx:DataGridColumn dataField="col_image" width="80"> |
| 514 |
|
|
<mx:itemRenderer> |
| 515 |
|
|
<fx:Component><mx:Image width="80" height="80" /></fx:Component> |
| 516 |
|
|
</mx:itemRenderer> |
| 517 |
|
|
</mx:DataGridColumn> |
| 518 |
|
|
<mx:DataGridColumn dataField="col_info"/> |
| 519 |
|
|
</mx:columns> |
| 520 |
|
|
</mx:DataGrid> |
| 521 |
|
|
</mx:Canvas> |
| 522 |
|
|
</mx:TabNavigator> |
| 523 |
|
|
</mx:Canvas> |
| 524 |
|
|
<mx:Canvas label="���������" width="100%" height="100%" id="canvas_owner" verticalScrollPolicy="off" horizontalScrollPolicy="off"> |
| 525 |
mineap |
603 |
|
| 526 |
mineap |
869 |
<mx:Canvas left="5" top="0" width="50" height="50" backgroundColor="#969696" |
| 527 |
|
|
contentBackgroundColor="#969696" dropShadowVisible="false"> |
| 528 |
|
|
<view:SmoothImage id="image_pubUserIcon" width="48" height="48" |
| 529 |
|
|
doubleClick="pubUserLinkButton_clickHandler(event)" |
| 530 |
|
|
doubleClickEnabled="true" top="1" left="1" |
| 531 |
|
|
source="{pubUserNameIconUrl}"/> |
| 532 |
|
|
</mx:Canvas> |
| 533 |
|
|
<mx:Label left="63" top="0" text="���������������"/> |
| 534 |
|
|
<mx:Label id="label_pubUserName" left="133" right="5" top="0" |
| 535 |
|
|
text="{pubUserName}"/> |
| 536 |
|
|
<mx:LinkButton id="pubUserLinkButton" left="58" top="22" |
| 537 |
|
|
label="{pubUserLinkButtonText}" |
| 538 |
|
|
click="pubUserLinkButton_clickHandler(event)" |
| 539 |
|
|
color="#0000FF" textDecoration="underline" |
| 540 |
|
|
toolTip="������������������������������������������������������������������������"/> |
| 541 |
mineap |
498 |
|
| 542 |
mineap |
869 |
<mx:VDividedBox left="0" top="50" bottom="0" right="0"> |
| 543 |
|
|
<mx:TabNavigator width="100%" height="180" |
| 544 |
|
|
backgroundAlpha="0.3"> |
| 545 |
|
|
<mx:Canvas id="canvas_owner_onNico" label="������������" width="100%" height="100%"> |
| 546 |
|
|
<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)"/> |
| 547 |
|
|
</mx:Canvas> |
| 548 |
|
|
<mx:Canvas id="canvas_owner_local" label="������������" width="100%" height="100%"> |
| 549 |
|
|
<mx:TextArea id="textArea_owner" editable="false" wordWrap="true" left="0" top="0" bottom="0" right="0" htmlText="{owner_text_local}" link="ownerTextLinkClicked(event)"/> |
| 550 |
|
|
</mx:Canvas> |
| 551 |
|
|
</mx:TabNavigator> |
| 552 |
|
|
<mx:DataGrid width="100%" height="50%" id="dataGrid_ownerComment" |
| 553 |
|
|
dataProvider="{ownerCommentProvider}" doubleClickEnabled="true" |
| 554 |
|
|
itemDoubleClick="commentListDoubleClicked(event)" rowHeight="22" |
| 555 |
mineap |
876 |
creationComplete="dataGrid_ownerComment_creationCompleteHandler(event)" |
| 556 |
mineap |
869 |
contentBackgroundAlpha="0.3"> |
| 557 |
|
|
<mx:columns> |
| 558 |
|
|
<mx:DataGridColumn headerText="������" dataField="vpos_column" width="50"/> |
| 559 |
|
|
<mx:DataGridColumn headerText="������������" dataField="command_column" width="100"/> |
| 560 |
|
|
<mx:DataGridColumn headerText="������������" dataField="comment_column"/> |
| 561 |
|
|
</mx:columns> |
| 562 |
|
|
</mx:DataGrid> |
| 563 |
|
|
</mx:VDividedBox> |
| 564 |
mineap |
498 |
</mx:Canvas> |
| 565 |
mineap |
869 |
<mx:Canvas label="������������" width="100%" height="100%" > |
| 566 |
|
|
<mx:ComboBox left="0" top="0" width="120" |
| 567 |
|
|
dataProvider="{relationSortComboboxDataProvider}" |
| 568 |
|
|
id="combobox_relationSort" |
| 569 |
|
|
change="relationSortComboboxChange(event)" |
| 570 |
|
|
creationComplete="comboboxRelationSortCreationCompleteHandler(event)"> |
| 571 |
|
|
</mx:ComboBox> |
| 572 |
|
|
<mx:ComboBox left="128" top="0" width="120" |
| 573 |
|
|
dataProvider="{relationOrderComboboxDataProvider}" |
| 574 |
|
|
id="combobox_relationOrder" |
| 575 |
|
|
change="relationOrderComboboxChange(event)" |
| 576 |
|
|
creationComplete="comboboxRelationOrderCreationCompleteHandler(event)"> |
| 577 |
|
|
</mx:ComboBox> |
| 578 |
|
|
<mx:DataGrid left="0" top="30" bottom="0" right="0" dataProvider="{relationDataProvider}" doubleClickEnabled="true" |
| 579 |
|
|
id="datagrid_relation" showHeaders="false" itemDoubleClick="relationItemDoubleClickHandler(event)" |
| 580 |
|
|
rowHeight="70" contentBackgroundAlpha="0.3"> |
| 581 |
|
|
<mx:columns> |
| 582 |
|
|
<mx:DataGridColumn dataField="col_image" width="80"> |
| 583 |
|
|
<mx:itemRenderer> |
| 584 |
|
|
<fx:Component><mx:Image width="80" height="70" /></fx:Component> |
| 585 |
|
|
</mx:itemRenderer> |
| 586 |
|
|
</mx:DataGridColumn> |
| 587 |
|
|
<mx:DataGridColumn dataField="col_info"/> |
| 588 |
|
|
</mx:columns> |
| 589 |
|
|
</mx:DataGrid> |
| 590 |
|
|
</mx:Canvas> |
| 591 |
mineap |
498 |
</mx:TabNavigator> |
| 592 |
mineap |
361 |
</mx:Canvas> |
| 593 |
mineap |
869 |
<mx:Canvas width="100%" height="100%" label="������������" creationComplete="canvas1_creationCompleteHandler(event)"> |
| 594 |
|
|
<mx:Label left="10" top="10" text="���������������"/> |
| 595 |
|
|
<mx:Label id="videoTypeText" left="140" right="5" top="10" text="{videoType}" truncateToFit="true" selectable="true"/> |
| 596 |
|
|
|
| 597 |
|
|
<mx:Label left="10" top="30" text="���������������"/> |
| 598 |
|
|
<mx:Label id="connectionTypeText" left="140" right="5" top="30" text="{connectionType}" truncateToFit="true" selectable="true"/> |
| 599 |
|
|
|
| 600 |
|
|
<mx:Label left="10" top="50" text="���������������������"/> |
| 601 |
|
|
<mx:Label id="videoServerUrlText" left="140" right="5" top="50" text="{videoServerUrl}" toolTip="{videoServerUrl}" truncateToFit="true" selectable="true"/> |
| 602 |
|
|
|
| 603 |
|
|
<mx:Label left="10" top="70" text="������������������������������"/> |
| 604 |
|
|
<mx:Label id="messageServerUrlText" left="140" right="5" top="70" text="{messageServerUrl}" toolTip="{messageServerUrl}" truncateToFit="true" selectable="true"/> |
| 605 |
|
|
|
| 606 |
|
|
<mx:Label left="10" top="90" text="���������������������������"/> |
| 607 |
|
|
<mx:Label id="economyModeText" left="140" right="6" top="90" text="{economyMode}" truncateToFit="true" selectable="true"/> |
| 608 |
|
|
|
| 609 |
|
|
<mx:Label left="10" top="110" text="���������������������"/> |
| 610 |
|
|
<mx:Label id="nickNameText" left="140" right="6" top="110" text="{nickName}" truncateToFit="true" selectable="true"/> |
| 611 |
|
|
|
| 612 |
|
|
<mx:Label left="10" top="130" text="������������������"/> |
| 613 |
|
|
<mx:Label id="premiumText" left="140" right="6" top="130" text="{isPremium}" truncateToFit="true" selectable="true"/> |
| 614 |
|
|
|
| 615 |
|
|
<mx:Label left="10" top="150" text="������������������������������"/> |
| 616 |
|
|
<mx:Label id="formatText" left="140" right="6" top="150" text="{format}" truncateToFit="true" selectable="true"/> |
| 617 |
|
|
|
| 618 |
|
|
<mx:Label left="10" top="170" text="���������������������"/> |
| 619 |
|
|
<mx:Label id="currentWindowSizeText" left="140" right="6" top="170" text="{currentWindowSize}" truncateToFit="true" selectable="true"/> |
| 620 |
|
|
|
| 621 |
|
|
<mx:Label left="10" top="190" text="������������������"/> |
| 622 |
|
|
<mx:Label id="videoSizeText" left="140" right="6" top="190" text="{videoSize}" truncateToFit="true" selectable="true"/> |
| 623 |
|
|
|
| 624 |
|
|
|
| 625 |
|
|
</mx:Canvas> |
| 626 |
|
|
<mx:Canvas label="������" width="100%" height="100%"> |
| 627 |
mineap |
871 |
<mx:Canvas label="������" id="canvas_config" verticalScrollPolicy="off" horizontalScrollPolicy="off" left="0" top="0" bottom="0" right="0"> |
| 628 |
mineap |
869 |
<mx:TabNavigator left="0" top="0" bottom="0" right="0" id="tab_config" |
| 629 |
|
|
backgroundAlpha="0.3"> |
| 630 |
|
|
<mx:Canvas label="������������" left="0" top="0" bottom="0" right="0" id="canvas_config_1"> |
| 631 |
|
|
|
| 632 |
|
|
<mx:CheckBox label="Player������������������������������������������" id="checkbox_resizePlayerEachPlay" |
| 633 |
|
|
change="checkboxResizePlayerEachPlay(event)" left="10" top="10" |
| 634 |
|
|
creationComplete="configCanvas1CreationCompleteHandler(event)"/> |
| 635 |
|
|
|
| 636 |
|
|
<mx:RadioButtonGroup id="radioGroup_resizeType" selectedValue="1" /> |
| 637 |
|
|
<mx:RadioButton label="������������������������������������" id="radioButton_resizeNicoDou" |
| 638 |
|
|
groupName="radioGroup_resizeType" value="1" left="35" top="30" |
| 639 |
|
|
change="radioButtonResizeTypeChanged(event)" |
| 640 |
|
|
toolTip="������������������������������������������������������������������������������������������������������������"/> |
| 641 |
|
|
<mx:CheckBox label="16:9���������������������������" id="checkbox_enableWideMode" selected="true" |
| 642 |
|
|
left="68" top="50" change="checkboxEnableWideModeChanged(event)" |
| 643 |
|
|
toolTip="���������������������16:9���������������������������������������������Player���������������16:9���������������������"/> |
| 644 |
|
|
<mx:CheckBox label="������������������������������������������������" id="checkbox_useOldVersionVideoSize" selected="false" |
| 645 |
|
|
left="68" top="70" change="checkboxUseOldVersionVideoSizeChanged(event)" |
| 646 |
|
|
toolTip="������������������(������)���������������������������������640��368������������������������������������������������������"/> |
| 647 |
|
|
<mx:RadioButton label="���������������������������������" id="radioButton_resizeVideo" |
| 648 |
|
|
groupName="radioGroup_resizeType" value="2" left="35" top="90" |
| 649 |
|
|
change="radioButtonResizeTypeChanged(event)" |
| 650 |
|
|
toolTip="���������������������������������������������������������������������������������������"/> |
| 651 |
|
|
|
| 652 |
|
|
<mx:CheckBox label="������������������������������������������������������������" id="checkBox_isAlwaysEconomyForStreaming" |
| 653 |
|
|
left="10" top="120" change="checkBoxAlwaysEconomyChanged(event)" |
| 654 |
|
|
toolTip="���������������������������������������������������������������������������������������������������������������������������������������������������"/> |
| 655 |
|
|
|
| 656 |
|
|
<mx:CheckBox left="10" top="150" |
| 657 |
|
|
label="���������������������������������������������" |
| 658 |
|
|
toolTip="FLV/MP4���������������������������������������������������������" |
| 659 |
|
|
id="checkBox_isSmoothing" |
| 660 |
|
|
change="checkBoxSmoothingChanged(event)" |
| 661 |
|
|
selected="true"/> |
| 662 |
|
|
<mx:CheckBox left="35" top="170" |
| 663 |
|
|
label="���������������������������������������������������������" |
| 664 |
|
|
toolTip="FLV/MP4���������������������������������������������������������������������������������������������������������������������" |
| 665 |
|
|
id="checkBox_isSmoothingOnlyNotPixelIdenticalDimensions" |
| 666 |
|
|
change="checkBoxSmoothingOnlyNotPixelIdenticalDimensionsChanged(event)" |
| 667 |
|
|
selected="true"/> |
| 668 |
|
|
|
| 669 |
|
|
<mx:Label x="10" top="200" text="������������:"/> |
| 670 |
|
|
<mx:HSlider minimum="2" maximum="3" snapInterval="1" value="2" left="143" top="200" |
| 671 |
mineap |
871 |
change="playerQualitySliderChanged(event)" id="slider_playerQuality" right="20" |
| 672 |
mineap |
869 |
toolTip="Player���������������������������������������������������������������������������" |
| 673 |
|
|
dataTipFormatFunction="showQualitySliderDataTipFunction"/> |
| 674 |
|
|
<mx:Label text="���" left="143" top="225"/> |
| 675 |
mineap |
871 |
<mx:Label right="20" top="225" text="������"/> |
| 676 |
mineap |
869 |
|
| 677 |
|
|
</mx:Canvas> |
| 678 |
|
|
<mx:Canvas label="������������������" left="0" top="0" bottom="0" right="0" id="canvas_config_2"> |
| 679 |
|
|
|
| 680 |
|
|
|
| 681 |
|
|
<mx:CheckBox left="10" top="10" label="���������������������������������������������������" |
| 682 |
|
|
toolTip="������������������������������������������������������������������������������������������������" |
| 683 |
|
|
id="checkBox_hideSekaShinComment" click="checkBoxHideSekaShinComment(event)"/> |
| 684 |
|
|
<mx:CheckBox label="������������������������������" top="30" left="10" id="checkBox_commentBold" |
| 685 |
|
|
change="checkBoxCommentBoldChanged(event)" |
| 686 |
|
|
creationComplete="configCanvas2CreationCompleteHandler(event)"/> |
| 687 |
|
|
<mx:CheckBox left="10" top="50" label="������������������������������������������" |
| 688 |
|
|
toolTip="������������������������������������������������������������������������������������������������������������������" |
| 689 |
|
|
id="checkBox_isNgUpEnable" change="checkBoxNgUpChanged(event)"/> |
| 690 |
|
|
<mx:CheckBox left="10" top="70" label="���������������������������������������������������" selected="true" |
| 691 |
|
|
toolTip="������������������������������������������������������������12���������������������������������������������������������������������������������������������5���������������������������������������" |
| 692 |
|
|
id="checkBox_isLengthwisePreferred" change="checkBoxIsLengthwisePreferredChanged(event)"/> |
| 693 |
|
|
|
| 694 |
mineap |
876 |
<s:HGroup left="10" top="95" verticalAlign="middle"> |
| 695 |
|
|
<mx:Label text="���������������������������������" |
| 696 |
|
|
toolTip="1���������������������������������������������������������(���������������������)���DL������������������������������������������������������������������������������"/> |
| 697 |
|
|
<mx:NumericStepper maximum="100000" stepSize="50" |
| 698 |
|
|
value="50" id="commentNumStepper" |
| 699 |
|
|
change="commentCountNumStepperChanged(event)" |
| 700 |
|
|
toolTip="1���������������������������������������������������������(���������������������)���DL������������������������������������������������������������������������������"/> |
| 701 |
|
|
<mx:Label text="������������/���"/> |
| 702 |
|
|
</s:HGroup> |
| 703 |
mineap |
869 |
|
| 704 |
mineap |
876 |
<s:HGroup left="10" top="125" verticalAlign="middle"> |
| 705 |
|
|
<mx:Label text="������������������������������������" |
| 706 |
|
|
toolTip="1������������������������������������������������������������������(���������������������)���DL������������������������������������������������������������������������������"/> |
| 707 |
|
|
<mx:NumericStepper maximum="100000" value="50" |
| 708 |
|
|
stepSize="50" id="ownerCommentNumStepper" |
| 709 |
|
|
change="ownerCommentCountNumStepperChanged(event)" |
| 710 |
|
|
toolTip="1������������������������������������������������������������������(���������������������)���DL������������������������������������������������������������������������������"/> |
| 711 |
|
|
<mx:Label text="������������/���"/> |
| 712 |
|
|
|
| 713 |
|
|
</s:HGroup> |
| 714 |
mineap |
869 |
|
| 715 |
|
|
<mx:Label text="���������������������������" left="10" top="147"/> |
| 716 |
mineap |
871 |
<mx:HSlider minimum="0.5" maximum="1.5" snapInterval="0.1" value="1" left="143" top="147" change="commentScaleSliderChanged(event)" id="slider_commentScale" right="20"/> |
| 717 |
mineap |
869 |
<mx:Label text="0.5���" left="143" top="173"/> |
| 718 |
mineap |
871 |
<mx:Label right="20" top="173" text="1.5���"/> |
| 719 |
mineap |
869 |
<mx:Label text="���������������FPS���" left="10" top="199" toolTip="������������������������FPS���������������������������������������������������������������"/> |
| 720 |
mineap |
871 |
<mx:HSlider minimum="1" maximum="5" value="2" left="143" top="199" snapInterval="1" dataTipFormatFunction="fpsDataTipFormatFunction" id="slider_fps" change="sliderFpsChanged(event)" right="20" toolTip="������������������������FPS���������������������������������������������������������������"/> |
| 721 |
mineap |
869 |
<mx:Label text="7.5fps" left="143" top="225"/> |
| 722 |
mineap |
871 |
<mx:Label right="20" top="225" text="120fps"/> |
| 723 |
mineap |
869 |
<mx:Label x="10" y="249" text="���������������������������"/> |
| 724 |
mineap |
871 |
<mx:HSlider y="249" left="143" minimum="1" maximum="5" snapInterval="1" right="20" showDataTip="true" value="3" id="slider_showCommentTime" change="sliderShowCommentTimeChanged(event)"/> |
| 725 |
mineap |
869 |
<mx:Label text="1���" left="143" top="275"/> |
| 726 |
mineap |
871 |
<mx:Label text="5���" top="275" right="20"/> |
| 727 |
mineap |
869 |
<mx:Label x="10" y="301" text="������������������������������" toolTip="������������������������������Player���������[Comment]������������������/������������������������������������������"/> |
| 728 |
mineap |
871 |
<mx:HSlider y="301" left="143" minimum="1" maximum="100" snapInterval="1" right="20" showDataTip="true" value="100" id="slider_commentAlpha" change="sliderCommentAlphaChanged(event)" toolTip="������������������������������[���������������������]������������������������������������������"/> |
| 729 |
mineap |
869 |
<mx:Label text="1%" left="143" top="327"/> |
| 730 |
mineap |
871 |
<mx:Label text="100%" top="327" right="20"/> |
| 731 |
mineap |
869 |
|
| 732 |
|
|
</mx:Canvas> |
| 733 |
|
|
<mx:Canvas label="���������" left="0" top="0" bottom="0" right="0" id="canvas_config_3"> |
| 734 |
|
|
|
| 735 |
|
|
<mx:CheckBox label="Player���������������������������������" id="checkbox_PlayerAlwaysFront" |
| 736 |
|
|
change="checkBoxPlayerAlwaysFrontChanged(event)" |
| 737 |
|
|
minHeight="20" left="10" top="10" |
| 738 |
|
|
creationComplete="configCanvas3CreationCompleteHandler(event)"/> |
| 739 |
|
|
<mx:CheckBox label="InfoView���������������������������������" id="checkbox_InfoViewAlwaysFront" |
| 740 |
|
|
change="checkBoxInfoViewAlwaysFrontChanged(event)" minHeight="20" left="10" top="30"/> |
| 741 |
|
|
<mx:CheckBox label="InfoView���Player������������������" id="checkbox_playerFollow" |
| 742 |
|
|
change="checkboxPlayerFollowChanged(event)" left="10" top="50"/> |
| 743 |
|
|
<mx:CheckBox label="InfoView������������Player���������������" id="checkbox_followInfoViewHeight" |
| 744 |
|
|
change="checkboxFollowInfoViewHeight(event)" left="10" top="70" |
| 745 |
|
|
toolTip="InfoView���������������Player���������������������������������������������"/> |
| 746 |
|
|
<mx:CheckBox label="Player������������������������" left="10" top="90" |
| 747 |
|
|
id="checkBox_useDarkColor" click="checkBox_useDarkColorChanged(event)" |
| 748 |
|
|
toolTip="Player���������������������������������������" |
| 749 |
|
|
selected="false"/> |
| 750 |
|
|
|
| 751 |
mineap |
871 |
<mx:HRule left="10" right="20" top="115" height="5"/> |
| 752 |
mineap |
869 |
|
| 753 |
|
|
<mx:CheckBox label="���������������������������������������" left="10" top="130" id="checkBox_isNotPlayNicowari" |
| 754 |
|
|
change="checkBoxIsNotPlayNicowariChanged(event)" |
| 755 |
|
|
toolTip="���������������������������������������������������������������������������������"/> |
| 756 |
|
|
<mx:CheckBox label="Player���������������������������������" left="10" top="150" id="checkBox_showAlwaysNicowariArea" |
| 757 |
|
|
change="checkBoxShowAlwaysNicowariAreaChanged(event)" |
| 758 |
|
|
toolTip="Player���������������������������������������������������������������������������������������������������������������������������������������" |
| 759 |
|
|
enabled="{!checkBox_isNotPlayNicowari.selected}"/> |
| 760 |
|
|
<mx:CheckBox label="Player���������������������������������" left="10" top="170" id="checkbox_hideTagArea" |
| 761 |
|
|
change="checkboxHideTagAreaChanged(event)" toolTip="Player���������������������������������������������������"/> |
| 762 |
|
|
<mx:CheckBox id="checkbox_hideUnderController" left="10" top="190" height="22" |
| 763 |
|
|
label="Player������������������������������������������" |
| 764 |
|
|
change="checkboxHideUnderControllerChanged(event)" fontWeight="normal" |
| 765 |
|
|
rollOut="videoPlayer.videoController.rollOut(event)" |
| 766 |
|
|
rollOver="videoPlayer.videoController.rollOver(event)" |
| 767 |
|
|
toolTip="Player���������������������������������������������������������������������������������������������������������������������"/> |
| 768 |
|
|
<mx:CheckBox label="Player���������������������������������������������������������������������������" left="10" top="210" |
| 769 |
|
|
id="checkBox_openFileDialogWhenOpenPlayer" click="checkBox_openFileDialogWhenOpenPlayer_clickHandler(event)" |
| 770 |
|
|
creationComplete="checkBox_openFileDialogWhenOpenPlayer_creationCompleteHandler(event)" |
| 771 |
|
|
toolTip="Player���������������������������������������������������������������������������������������������������������������������������������������������"/> |
| 772 |
|
|
|
| 773 |
mineap |
871 |
<mx:HRule left="10" right="20" top="235" height="5"/> |
| 774 |
mineap |
869 |
|
| 775 |
|
|
<mx:CheckBox label="���������������������������������������������" left="10" top="250" |
| 776 |
|
|
id="checkBox_renewComment" click="checkBoxRenewCommentChanged()" |
| 777 |
|
|
toolTip="������������������������������������������������������������������������������������������������"/> |
| 778 |
|
|
<mx:CheckBox label="������������������������������������" left="36" top="270" |
| 779 |
|
|
id="checkBox_renewTagAndNicowari" click="checkBoxRenewTagNicowariChanged()" |
| 780 |
|
|
toolTip="������������������������������������������������������������������������������"/> |
| 781 |
|
|
<mx:CheckBox label="���������������������������������������������������������������������������������" |
| 782 |
|
|
left="36" top="290" id="checkBox_isAppendComment" |
| 783 |
|
|
change="checkBoxAppendCommentChanged(event)" |
| 784 |
|
|
toolTip="���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������NNDD������������������������������������������������������������������������������������������������������"/> |
| 785 |
|
|
|
| 786 |
|
|
<mx:CheckBox label="������������������������������������" left="10" top="320" |
| 787 |
|
|
id="checkBox_enableJump" click="checkBoxIsEnableJump(event)" |
| 788 |
|
|
toolTip="������������������������������������������������������������������������������"/> |
| 789 |
|
|
<mx:CheckBox label="���������������������������������������������������������" left="36" top="340" |
| 790 |
|
|
id="checkBox_askToUserOnJump" click="checkBoxIsAskToUserOnJump(event)" |
| 791 |
|
|
toolTip="���������������������������������������������������������������������������������������������������������������"/> |
| 792 |
|
|
|
| 793 |
mineap |
871 |
<mx:HRule left="10" right="20" top="365" height="5"/> |
| 794 |
mineap |
869 |
|
| 795 |
|
|
<mx:CheckBox label="������������������������������(184)" left="10" top="380" |
| 796 |
|
|
id="checkBox_is184" click="checkBoxIs184(event)" |
| 797 |
|
|
toolTip="���������������������(184)������������������" |
| 798 |
|
|
selected="true"/> |
| 799 |
|
|
|
| 800 |
|
|
</mx:Canvas> |
| 801 |
|
|
</mx:TabNavigator> |
| 802 |
|
|
</mx:Canvas> |
| 803 |
|
|
</mx:Canvas> |
| 804 |
|
|
</mx:ViewStack> |
| 805 |
|
|
</mx:VDividedBox> |
| 806 |
|
|
|
| 807 |
mineap |
876 |
<mx:ToggleButtonBar dataProvider="{viewstack1}" left="5" bottom="5" fontWeight="normal" height="22"> |
| 808 |
mineap |
361 |
</mx:ToggleButtonBar> |
| 809 |
mineap |
876 |
<mx:Button id="button_videoOpen" right="5" bottom="5" height="22" label="���������������..." |
| 810 |
mineap |
484 |
click="button_videoOpen_clickHandler(event)"/> |
| 811 |
mineap |
361 |
|
| 812 |
mineap |
544 |
</s:Window> |