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