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 1016 by mineap, Sun Nov 2 05:04:36 2014 UTC revision 1017 by mineap, Sun Nov 23 07:06:05 2014 UTC
# Line 3695  package org.mineap.nndd.player Line 3695  package org.mineap.nndd.player
3695                  public function seekOperation(vpos:Number):void{                  public function seekOperation(vpos:Number):void{
3696                          if(videoInfoView.isEnableJump){                          if(videoInfoView.isEnableJump){
3697  //                              this.seek(vpos/1000);  //                              this.seek(vpos/1000);
3698                                  this.seek(vpos);                                  if ( isPlayListPlaying && videoInfoView.isIgnoreJumpOnPlayList ){
3699                                            logManager.addLog("プレイリスト再生中はジャンプ命令を無視(ジャンプ先:" + vpos + ")")
3700                                    } else {
3701                                            this.seek(vpos);
3702                                    }
3703                          }else{                          }else{
3704                                  logManager.addLog("ジャンプ命令を無視(ジャンプ先:" + vpos + " sec.)");                                  logManager.addLog("ジャンプ命令を無視(ジャンプ先:" + vpos + ")");
3705                          }                          }
3706                  }                  }
3707                                    
# Line 3716  package org.mineap.nndd.player Line 3720  package org.mineap.nndd.player
3720                          //ジャンプ命令は有効か?                          //ジャンプ命令は有効か?
3721                          if(videoInfoView.isEnableJump){                          if(videoInfoView.isEnableJump){
3722                                                                    
3723                                  //ジャンプ命令の際にユーザーに問い合わせる設定か?                                  if ( isPlayListPlaying && videoInfoView.isIgnoreJumpOnPlayList ){
3724                                  if(videoInfoView.isAskToUserOnJump){                                          logManager.addLog("プレイリスト再生中はジャンプ命令を無視(ジャンプ先:" + videoId + ")")
3725                                                                            } else {
3726                                          if(!pausing){                                  
3727                                                  this.play();                                          //ジャンプ命令の際にユーザーに問い合わせる設定か?
3728                                          }                                          if(videoInfoView.isAskToUserOnJump){
3729                                          if(nicowariMC != null){                                                  
3730                                                  this.pauseByNicowari(true);                                                  if(!pausing){
3731                                          }                                                          this.play();
3732                                                                                            }
3733                                          videoPlayer.videoController.resetAlpha(true);                                                  if(nicowariMC != null){
3734                                                                                                    this.pauseByNicowari(true);
3735                                          //問い合わせダイアログ表示                                                  }
3736                                          videoPlayer.showAskToUserOnJump(function():void{                                                  
3737                                                    videoPlayer.videoController.resetAlpha(true);
3738                                                    
3739                                                    //問い合わせダイアログ表示
3740                                                    videoPlayer.showAskToUserOnJump(function():void{
3741                                                            jumpStart(videoId, message);
3742                                                    }, function():void{
3743                                                            play();
3744                                                            logManager.addLog("ジャンプ命令をキャンセル(ジャンプ先:" + videoId + ")");
3745                                                    }, videoId);
3746                                                    
3747                                            }else{
3748                                                  jumpStart(videoId, message);                                                  jumpStart(videoId, message);
3749                                          }, function():void{                                          }
                                                 play();  
                                                 logManager.addLog("ジャンプ命令をキャンセル(ジャンプ先:" + videoId + ")");  
                                         }, videoId);  
                                           
                                 }else{  
                                         jumpStart(videoId, message);  
3750                                  }                                  }
3751                                                                    
3752                          }else{                          }else{

Legend:
Removed from v.1016  
changed lines
  Added in v.1017

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