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 785 by mineap, Sat Apr 7 13:03:55 2012 UTC revision 786 by mineap, Sat Apr 7 13:43:13 2012 UTC
# Line 4464  package org.mineap.nndd.player Line 4464  package org.mineap.nndd.player
4464                                  if(!isPlayListingPlay){                                  if(!isPlayListingPlay){
4465                                          // 通常再生中                                          // 通常再生中
4466                                          playMovie(nnddVideo.getDecodeUrl());                                          playMovie(nnddVideo.getDecodeUrl());
4467                                  }else{                                  }else if (this.videoInfoView.getPlayList().length > 0){
4468                                          // プレイリスト再生中                                          // プレイリスト再生中
4469                                          if(playingIndex >= this.videoInfoView.getPlayList().length-1){                                          if(playingIndex >= this.videoInfoView.getPlayList().length-1){
4470                                                  playingIndex = this.videoInfoView.getPlayList().length-1;                                                  playingIndex = this.videoInfoView.getPlayList().length-1;
# Line 4477  package org.mineap.nndd.player Line 4477  package org.mineap.nndd.player
4477                                                  playMovie(this.videoInfoView.getPlayListUrl(playingIndex), this.videoInfoView.playList,                                                  playMovie(this.videoInfoView.getPlayListUrl(playingIndex), this.videoInfoView.playList,
4478                                                          playingIndex, PathMaker.getVideoName(this.videoInfoView.getPlayListUrl(playingIndex)));                                                          playingIndex, PathMaker.getVideoName(this.videoInfoView.getPlayListUrl(playingIndex)));
4479                                          }                                          }
4480                                    }else
4481                                    {
4482                                            isPlayListingPlay = false;
4483                                  }                                  }
4484                          }                          }
4485                  }                  }
# Line 4487  package org.mineap.nndd.player Line 4490  package org.mineap.nndd.player
4490                   */                   */
4491                  public function next():void                  public function next():void
4492                  {                  {
4493                          if (isPlayListingPlay)                          if (isPlayListingPlay && this.videoInfoView.getPlayList().length > 0)
4494                          {                          {
4495                                  // プレイリスト再生中                                  // プレイリスト再生中
4496                                  if(playingIndex >= this.videoInfoView.getPlayList().length-1){                                  if(playingIndex >= this.videoInfoView.getPlayList().length-1){
# Line 4502  package org.mineap.nndd.player Line 4505  package org.mineap.nndd.player
4505                                                  playingIndex, PathMaker.getVideoName(this.videoInfoView.getPlayListUrl(playingIndex)));                                                  playingIndex, PathMaker.getVideoName(this.videoInfoView.getPlayListUrl(playingIndex)));
4506                                  }                                  }
4507                          }                          }
4508                            else
4509                            {
4510                                    isPlayListingPlay = false;
4511                            }
4512                  }                  }
4513                                    
4514                  /**                  /**

Legend:
Removed from v.785  
changed lines
  Added in v.786

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26