>>501
こんな手でスクリプトで動的変更する関数を作れるので、メニューにもキーにも
登録できるけれど、あまりConfig.SetValueに頼るのはアレだよねー。

function setAttributeMask(readOnly, hidden, system, archive)
{
var path = "/Config/FileList/AttrFilter/";
Config.SetValue("Filer", path + "ReadOnly", readOnly, false);
Config.SetValue("Filer", path + "Hidden", hidden, false);
Config.SetValue("Filer", path + "System", system, false);
Config.SetValue("Filer", path + "Archive", archive, false);
Records.Initialize();
}