Develop and Download Open Source Software
Login
Create Account
Help
MY OSDN
Find Software
Magazine
Develop
Pastebin
Software
People
PersonalForge
Magazine
Wiki
OSDN
>
Find Software
>
NNDD - ニコ動専用ブラウザ
NNDD - ニコ動専用ブラウザ
Summary
Project Summary
Developer Dashboard
Project Reviews
Web Page
Developers
List of RSS Feeds
Statistics
History
Image Gallery
Search Keywords
News
Listed News
Help
Downloads
List of Releases
Help
Source Code
Guide
Browse SVN
Browse Git: nndd
Help
Wiki
FrontPage
Title index
Recent changes
Wiki Search
Help
Forums
List of Forums
Open Discussion (1)
Help (1)
Developers (1)
Help
Mailing Lists
list of ML
Help
Ticket
Ticket List
Milestone List
Type List
Component List
List of frequently used tickets/RSS
Submit New Ticket
Help
Browse Subversion Repository
/
[nndd]
/
NNDDv2
/
trunk
/
src
/
org
/
mineap
/
nndd
/
player
/
PlayerController.as
Diff of /NNDDv2/trunk/src/org/mineap/nndd/player/PlayerController.as
Parent Directory
|
Revision Log
|
Patch
revision
772
by
mineap
, Sat Feb 25 12:01:34 2012 UTC
revision
785
by
mineap
, Sat Apr 7 13:03:55 2012 UTC
#
Line 4482
package org.mineap.nndd.player
Line 4482
package org.mineap.nndd.player
4482
}
}
4483
4484
/**
/**
4485
* 次の動画に進みます。これはプレイリストを再生している場合にのみ有効です。
4486
*
4487
*/
4488
public function next():void
4489
{
4490
if (isPlayListingPlay)
4491
{
4492
// プレイリスト再生中
4493
if(playingIndex >= this.videoInfoView.getPlayList().length-1){
4494
playingIndex = 0;
4495
if(this.videoPlayer.videoInfoView.isRepeatAll()){
4496
playMovie(this.videoInfoView.getPlayListUrl(playingIndex), this.videoInfoView.playList,
4497
playingIndex, PathMaker.getVideoName(this.videoInfoView.getPlayListUrl(playingIndex)));
4498
}
4499
}else{
4500
playingIndex++;
4501
playMovie(this.videoInfoView.getPlayListUrl(playingIndex), this.videoInfoView.playList,
4502
playingIndex, PathMaker.getVideoName(this.videoInfoView.getPlayListUrl(playingIndex)));
4503
}
4504
}
4505
}
4506
4507
/**
4508
* 現在プレイリストを再生中かどうかを返す
4509
* @reutrn
4510
*/
4511
public function get isPlayListPlaying():Boolean
4512
{
4513
return this.isPlayListingPlay;
4514
}
4515
4516
/**
4517
* プレイリストにおける、現在再生中の動画のインデックスを返す
4518
* @return
4519
*
4520
*/
4521
public function get playingIndexOnPlaylist():int
4522
{
4523
return this.playingIndex;
4524
}
4525
4526
/**
4527
* 指定された動画がローカルのマイリストに存在する場合、マイリストの動画を既読に設定します。
* 指定された動画がローカルのマイリストに存在する場合、マイリストの動画を既読に設定します。
4528
* @param videoId
* @param videoId
4529
*
*
Colored Diff
Long Colored Diff
Full Colored Diff
Unidiff
Context Diff
Side by Side
Legend:
Removed from v.772
changed lines
Added in v.785
Back to OSDN
">
Back to OSDN
ViewVC Help
Powered by
ViewVC 1.1.26