Develop and Download Open Source Software

Browse Subversion Repository

Diff of /NNDDv2/trunk/src/org/mineap/nndd/player/PlayerController.as

Parent Directory Parent Directory | Revision Log Revision Log | View Patch 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                   *                   *

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