| 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 |
|
|
| 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{ |