| 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; |
public var is184:Boolean = true; |
| 99 |
|
public var useDarkColor:Boolean = false; |
| 100 |
|
|
| 101 |
public static const RESIZE_TYPE_NICO:int = 1; |
public static const RESIZE_TYPE_NICO:int = 1; |
| 102 |
public static const RESIZE_TYPE_VIDEO:int = 2; |
public static const RESIZE_TYPE_VIDEO:int = 2; |
| 693 |
is184 = event.currentTarget.selected; |
is184 = event.currentTarget.selected; |
| 694 |
} |
} |
| 695 |
|
|
| 696 |
|
private function checkBox_useDarkColorChanged(event:MouseEvent):void |
| 697 |
|
{ |
| 698 |
|
this.useDarkColor = event.currentTarget.selected; |
| 699 |
|
|
| 700 |
|
this.changeColor(useDarkColor); |
| 701 |
|
|
| 702 |
|
} |
| 703 |
|
|
| 704 |
private function checkBoxHideSekaShinComment(event:MouseEvent):void{ |
private function checkBoxHideSekaShinComment(event:MouseEvent):void{ |
| 705 |
isHideSekaShinComment = event.currentTarget.selected; |
isHideSekaShinComment = event.currentTarget.selected; |
| 706 |
|
|
| 889 |
|
|
| 890 |
checkBox_is184.selected = is184; |
checkBox_is184.selected = is184; |
| 891 |
|
|
| 892 |
|
checkBox_useDarkColor.selected = useDarkColor; |
| 893 |
|
|
| 894 |
} |
} |
| 895 |
|
|
| 896 |
|
|
| 1253 |
this.is184 = ConfUtil.parseBoolean(confValue); |
this.is184 = ConfUtil.parseBoolean(confValue); |
| 1254 |
} |
} |
| 1255 |
|
|
| 1256 |
|
confValue = ConfigManager.getInstance().getItem("useDarkColor"); |
| 1257 |
|
if (confValue != null) |
| 1258 |
|
{ |
| 1259 |
|
this.useDarkColor = ConfUtil.parseBoolean(confValue); |
| 1260 |
|
} |
| 1261 |
|
|
| 1262 |
}catch(error:Error){ |
}catch(error:Error){ |
| 1263 |
trace(error.getStackTrace()); |
trace(error.getStackTrace()); |
| 1264 |
Alert.show(Message.M_CONF_FILE_IS_BROKEN, Message.M_ERROR); |
Alert.show(Message.M_CONF_FILE_IS_BROKEN, Message.M_ERROR); |
| 1413 |
ConfigManager.getInstance().removeItem("is184"); |
ConfigManager.getInstance().removeItem("is184"); |
| 1414 |
ConfigManager.getInstance().setItem("is184", is184); |
ConfigManager.getInstance().setItem("is184", is184); |
| 1415 |
|
|
| 1416 |
|
ConfigManager.getInstance().removeItem("useDarkColor"); |
| 1417 |
|
ConfigManager.getInstance().setItem("useDarkColor", useDarkColor); |
| 1418 |
|
|
| 1419 |
ConfigManager.getInstance().save(); |
ConfigManager.getInstance().save(); |
| 1420 |
|
|
| 1421 |
}catch(error:Error){ |
}catch(error:Error){ |