| 95 |
public var isFollowInfoViewHeight:Boolean = false; |
public var isFollowInfoViewHeight:Boolean = false; |
| 96 |
public var isNotPlayNicowari:Boolean = false; |
public var isNotPlayNicowari:Boolean = false; |
| 97 |
public var isOpenFileDialogWhenOpenPlayer:Boolean = false; |
public var isOpenFileDialogWhenOpenPlayer:Boolean = false; |
| 98 |
|
public var is184:Boolean = true; |
| 99 |
|
|
| 100 |
public static const RESIZE_TYPE_NICO:int = 1; |
public static const RESIZE_TYPE_NICO:int = 1; |
| 101 |
public static const RESIZE_TYPE_VIDEO:int = 2; |
public static const RESIZE_TYPE_VIDEO:int = 2; |
| 687 |
isAskToUserOnJump = event.currentTarget.selected; |
isAskToUserOnJump = event.currentTarget.selected; |
| 688 |
} |
} |
| 689 |
|
|
| 690 |
|
private function checkBoxIs184(event:MouseEvent):void |
| 691 |
|
{ |
| 692 |
|
is184 = event.currentTarget.selected; |
| 693 |
|
} |
| 694 |
|
|
| 695 |
private function checkBoxHideSekaShinComment(event:MouseEvent):void{ |
private function checkBoxHideSekaShinComment(event:MouseEvent):void{ |
| 696 |
isHideSekaShinComment = event.currentTarget.selected; |
isHideSekaShinComment = event.currentTarget.selected; |
| 697 |
|
|
| 878 |
checkBox_askToUserOnJump.selected = isAskToUserOnJump; |
checkBox_askToUserOnJump.selected = isAskToUserOnJump; |
| 879 |
checkBox_askToUserOnJump.enabled = isEnableJump; |
checkBox_askToUserOnJump.enabled = isEnableJump; |
| 880 |
|
|
| 881 |
|
checkBox_is184.selected = is184; |
| 882 |
|
|
| 883 |
} |
} |
| 884 |
|
|
| 1236 |
this.isOpenFileDialogWhenOpenPlayer = ConfUtil.parseBoolean(confValue); |
this.isOpenFileDialogWhenOpenPlayer = ConfUtil.parseBoolean(confValue); |
| 1237 |
} |
} |
| 1238 |
|
|
| 1239 |
|
confValue = ConfigManager.getInstance().getItem("is184"); |
| 1240 |
|
if (confValue != null) |
| 1241 |
|
{ |
| 1242 |
|
this.is184 = ConfUtil.parseBoolean(confValue); |
| 1243 |
|
} |
| 1244 |
|
|
| 1245 |
}catch(error:Error){ |
}catch(error:Error){ |
| 1246 |
trace(error.getStackTrace()); |
trace(error.getStackTrace()); |
| 1247 |
Alert.show(Message.M_CONF_FILE_IS_BROKEN, Message.M_ERROR); |
Alert.show(Message.M_CONF_FILE_IS_BROKEN, Message.M_ERROR); |
| 1393 |
ConfigManager.getInstance().removeItem("isOpenFileDialogWhenOpenPlayer"); |
ConfigManager.getInstance().removeItem("isOpenFileDialogWhenOpenPlayer"); |
| 1394 |
ConfigManager.getInstance().setItem("isOpenFileDialogWhenOpenPlayer", isOpenFileDialogWhenOpenPlayer); |
ConfigManager.getInstance().setItem("isOpenFileDialogWhenOpenPlayer", isOpenFileDialogWhenOpenPlayer); |
| 1395 |
|
|
| 1396 |
|
ConfigManager.getInstance().removeItem("is184"); |
| 1397 |
|
ConfigManager.getInstance().setItem("is184", is184); |
| 1398 |
|
|
| 1399 |
ConfigManager.getInstance().save(); |
ConfigManager.getInstance().save(); |
| 1400 |
|
|
| 1401 |
}catch(error:Error){ |
}catch(error:Error){ |