| 79 |
public var relationSortIndex:int = 0; |
public var relationSortIndex:int = 0; |
| 80 |
public var relationOrderIndex:int = 0; |
public var relationOrderIndex:int = 0; |
| 81 |
public var isNgUpEnable:Boolean = true; |
public var isNgUpEnable:Boolean = true; |
| 82 |
|
public var isSmoothing:Boolean = true; |
| 83 |
|
|
| 84 |
public static const RESIZE_TYPE_NICO:int = 1; |
public static const RESIZE_TYPE_NICO:int = 1; |
| 85 |
public static const RESIZE_TYPE_VIDEO:int = 2; |
public static const RESIZE_TYPE_VIDEO:int = 2; |
| 222 |
} |
} |
| 223 |
} |
} |
| 224 |
|
|
| 225 |
|
public function checkBoxSmoothingChanged(event:Event):void{ |
| 226 |
|
this.isSmoothing = checkBox_isSmoothing.selected; |
| 227 |
|
if(this.playerController != null){ |
| 228 |
|
this.playerController.setVideoSmoothing(this.isSmoothing); |
| 229 |
|
} |
| 230 |
|
} |
| 231 |
|
|
| 232 |
private function checkBoxPlayerAlwaysFrontChanged(event:Event):void{ |
private function checkBoxPlayerAlwaysFrontChanged(event:Event):void{ |
| 233 |
this.videoPlayer.isAlwaysFront = (event.currentTarget as CheckBox).selected; |
this.videoPlayer.isAlwaysFront = (event.currentTarget as CheckBox).selected; |
| 234 |
this.videoPlayer.alwaysInFront = (event.currentTarget as CheckBox).selected; |
this.videoPlayer.alwaysInFront = (event.currentTarget as CheckBox).selected; |
| 724 |
checkBox_hideSekaShinComment.selected = isHideSekaShinComment; |
checkBox_hideSekaShinComment.selected = isHideSekaShinComment; |
| 725 |
|
|
| 726 |
checkBox_isNgUpEnable.selected = isNgUpEnable; |
checkBox_isNgUpEnable.selected = isNgUpEnable; |
| 727 |
|
checkBox_isSmoothing.selected = isSmoothing; |
| 728 |
|
|
| 729 |
if(playerController.getCommentManager() != null){ |
if(playerController.getCommentManager() != null){ |
| 730 |
playerController.getCommentManager().setAntiAlias(isAntiAlias); |
playerController.getCommentManager().setAntiAlias(isAntiAlias); |
| 1022 |
isNgUpEnable = ConfUtil.parseBoolean(confValue); |
isNgUpEnable = ConfUtil.parseBoolean(confValue); |
| 1023 |
} |
} |
| 1024 |
|
|
| 1025 |
|
confValue = ConfigManager.getInstance().getItem("isSmoothing"); |
| 1026 |
|
if(confValue != null){ |
| 1027 |
|
isSmoothing = ConfUtil.parseBoolean(confValue); |
| 1028 |
|
} |
| 1029 |
|
if(playerController != null){ |
| 1030 |
|
playerController.setVideoSmoothing(this.isSmoothing); |
| 1031 |
|
} |
| 1032 |
|
|
| 1033 |
|
|
| 1034 |
}catch(error:Error){ |
}catch(error:Error){ |
| 1035 |
trace(error.getStackTrace()); |
trace(error.getStackTrace()); |
| 1146 |
ConfigManager.getInstance().removeItem("isNgUpEnable"); |
ConfigManager.getInstance().removeItem("isNgUpEnable"); |
| 1147 |
ConfigManager.getInstance().setItem("isNgUpEnable", isNgUpEnable); |
ConfigManager.getInstance().setItem("isNgUpEnable", isNgUpEnable); |
| 1148 |
|
|
| 1149 |
|
ConfigManager.getInstance().removeItem("isSmoothing"); |
| 1150 |
|
ConfigManager.getInstance().setItem("isSmoothing",isSmoothing); |
| 1151 |
|
|
| 1152 |
ConfigManager.getInstance().save(); |
ConfigManager.getInstance().save(); |
| 1153 |
|
|
| 1154 |
}catch(error:Error){ |
}catch(error:Error){ |