| 236 |
checkBox_openFileDialogWhenOpenPlayer.selected = isOpenFileDialogWhenOpenPlayer; |
checkBox_openFileDialogWhenOpenPlayer.selected = isOpenFileDialogWhenOpenPlayer; |
| 237 |
} |
} |
| 238 |
|
|
| 239 |
|
protected function dataGrid_playList_showHandler(event:FlexEvent):void |
| 240 |
|
{ |
| 241 |
|
if (playerController.isPlayListPlaying) |
| 242 |
|
{ |
| 243 |
|
dataGrid_playList.selectedIndex = playerController.playingIndexOnPlaylist; |
| 244 |
|
} |
| 245 |
|
} |
| 246 |
|
|
| 247 |
]]> |
]]> |
| 248 |
</fx:Script> |
</fx:Script> |
| 249 |
|
|
| 345 |
<mx:Canvas label="プレイリスト" width="100%" height="100%" id="canvas_playList" verticalScrollPolicy="off" horizontalScrollPolicy="off"> |
<mx:Canvas label="プレイリスト" width="100%" height="100%" id="canvas_playList" verticalScrollPolicy="off" horizontalScrollPolicy="off"> |
| 346 |
<mx:DataGrid left="0" right="0" top="20" bottom="53" dataProvider="{playListProvider}" doubleClickEnabled="true" |
<mx:DataGrid left="0" right="0" top="20" bottom="53" dataProvider="{playListProvider}" doubleClickEnabled="true" |
| 347 |
dragEnabled="true" dropEnabled="true" dragMoveEnabled="true" dragDrop="playListDragDropHandler(event)" id="dataGrid_playList" |
dragEnabled="true" dropEnabled="true" dragMoveEnabled="true" dragDrop="playListDragDropHandler(event)" id="dataGrid_playList" |
| 348 |
itemDoubleClick="playListDoubleClicked()" showHeaders="false"> |
itemDoubleClick="playListDoubleClicked()" showHeaders="false" show="dataGrid_playList_showHandler(event)"> |
| 349 |
<mx:columns> |
<mx:columns> |
| 350 |
<mx:DataGridColumn> |
<mx:DataGridColumn> |
| 351 |
</mx:DataGridColumn> |
</mx:DataGridColumn> |
| 360 |
<mx:Button id="button_reverse" left="68" bottom="28" width="50" label="↓↑" |
<mx:Button id="button_reverse" left="68" bottom="28" width="50" label="↓↑" |
| 361 |
click="playListReverseButtonClicked(event)" |
click="playListReverseButtonClicked(event)" |
| 362 |
toolTip="このプレイリストの順番を逆順にします"/> |
toolTip="このプレイリストの順番を逆順にします"/> |
| 363 |
|
<mx:Button id="button_shuffle" left="126" bottom="28" width="80" label="シャッフル" |
| 364 |
|
click="playListShuffleButtonClicked(event)" |
| 365 |
|
toolTip="このプレイリストをシャッフルします"/> |
| 366 |
|
|
| 367 |
<mx:Button left="10" bottom="3" label="保存" |
<mx:Button left="10" bottom="3" label="保存" |
| 368 |
click="playListSaveButtonClicked(event)" toolTip="このプレイリストの内容を保存します"/> |
click="playListSaveButtonClicked(event)" toolTip="このプレイリストの内容を保存します"/> |
| 369 |
<mx:Button left="89" bottom="3" label="クリア" |
<mx:Button left="89" bottom="3" label="クリア" |
| 370 |
click="playListClearButtonClicked(event)" toolTip="このプレイリストを空にします"/> |
click="playListClearButtonClicked(event)" toolTip="このプレイリストを空にします"/> |
|
<mx:Button id="button_shuffle" left="126" bottom="28" width="80" label="シャッフル" |
|
|
click="playListShuffleButtonClicked(event)" |
|
|
toolTip="このプレイリストをシャッフルします"/> |
|
| 371 |
<mx:Label left="0" top="0" right="0" id="label_playListTitle" text="{label_playListTitle_dataProvider}"/> |
<mx:Label left="0" top="0" right="0" id="label_playListTitle" text="{label_playListTitle_dataProvider}"/> |
| 372 |
</mx:Canvas> |
</mx:Canvas> |
| 373 |
<mx:Canvas label="タグ" width="100%" height="100%" id="canvas_Tag"> |
<mx:Canvas label="タグ" width="100%" height="100%" id="canvas_Tag"> |